
	$(function() {
		$("#header ul li a.home").css("opacity",".75");

		// on mouse over
		$("#header ul li a.home").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: .65
			}, "slow");
			
		
	
});
	$("#header ul li a.who").css("opacity",".75");
	$("#header ul li a.who").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: .65
			}, "slow");
	
});
	$("#header ul li a.what").css("opacity",".75");
	$("#header ul li a.what").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: .65
			}, "slow");
	
});
	$("#header ul li a.why").css("opacity",".75");
	$("#header ul li a.why").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: .65
			}, "slow");
	
});
	$("#header ul li a.portfolio").css("opacity",".75");
$("#header ul li a.portfolio").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: .65
			}, "slow");
	
});
$("#header ul li a.contact").css("opacity",".75");
$("#header ul li a.contact").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: .65
			}, "slow");
	
});

	});
	
	

