// JavaScript Document
$(function(){	
	$("ul.nav li a").css("opacity", 0);
	$("ul.nav li a").hover(function(){
		$(this).stop().animate({
		opacity: 1
		}, 300);
	},
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, 600);
	});
});
