$(document).ready(function() {
   $('#menuHaut ul').css('display','none');
   $('#menuHaut li').hover(
	   function() {
		   $(this).find('ul').stop(true,true).fadeIn();
	   },
	   function() {
		   $(this).find('ul').stop(true,true).fadeOut();
	   }					   
	);
   }
);
