
$(document).ready(function(){ 
	//Set the anchor link opacity to 0 and begin hover function
	$("ul#nav li a").css({"opacity" : 0}).hover(function(){ 

		//Fade to an opacity of 1 at a speed of 200ms
		$(this).stop().animate({"opacity" : 1}, 200); 

		//On mouse-off
		}, function(){

		//Fade to an opacity of 0 at a speed of 100ms
		$(this).stop().animate({"opacity" : 0}, 100); 
	});
});
