$(document).ready(function(){
	
	if($.browser.msie && $.browser.version>="8.0"){
		return false;
	}else{
		$('#nav a').hover(function(){
			$(this).css({opacity:0}).stop().animate({opacity:1},'slow');
			},function(){
			$(this).stop().animate({opacity:0},'slow');
		});
	}

});
