$().ready(function(){	

	if (!$.browser.msie || $.browser.version >= 7){
		$("#menu-haut > li > a").hover(function () {   
		 
			$("span.mhover", this).remove();  
			 $(this).prepend('<span class="mhover"> </span>');
				
			$("span.mhover",this).css('opacity','0');
				
			$("span.mhover",this).animate({          
				opacity: 1      
			}, 500);   
		}, function(){
	
		}); 
		
		$("#menu-haut > li ").hover(function () {   
 
		}, function(){
			$("span.mhover", this).stop().animate({
				opacity: 0
			}, 300, "linear", function(){$("span.mhover", this).remove();});			
		}); 
	}
	
	$('#menu-haut li').each(function() {
		$(this).mouseover(function(){$('ul', this).show();}).mouseout(function(){$('ul', this).hide();});
	});	

});