
/* ~~~~~~~~~~ NAV MENU ~~~~~~~~~~ */
$(function() {
		// set opacity to nill on page load
		$("ul#menu span").css("opacity","0");
		$("ul#menu li.selected span").css("opacity","1");
		// on mouse over
		$("ul#menu span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 'slow');
		});
	});
	$(function() {
		// set opacity to nill on page load
		$("ul#menu li.selected span").css("opacity","1");
		// on mouse over
		$("ul#menu li.selected span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		});
	});


/* ~~~~~~~~~~ FOOTER BLOCK LIST ~~~~~~~~~~ 
	
$(function() {
	// set opacity to nill on page load
	$("ul.list span").css("opacity","0.4");
	// on mouse over
	$("ul.list span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, 'slow');
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0.4
		}, 'slow');
	});
});

*/

/* ~~~~~~~~~~ PORTFOLIO ~~~~~~~~~~ 

$(function() {
		// set opacity to nill on page load
		$("ul#year span").css("opacity","0");
		$("ul#year li a.selected span").css("opacity","1");
		// on mouse over
		$("ul#year span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, 'slow');
		});
	});
	$(function() {
		// set opacity to nill on page load
		$("ul#year li a.selected span").css("opacity","1");
		// on mouse over
		$("ul#year li a.selected span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		});
	});
*/	