$(document).ready(function(){ 

	$("#navHome li a").css({"opacity" : 0}).hover(function(){ //Set anchor link opacity to 0 and begin hover function
		$(this).stop().animate({"opacity" : 1}, 800); //Fade to an opacity of 1 at a speed of 200ms

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

	});

});

if(jQuery.browser.msie) jQuery.noConflict();
