$(document).ready(function(){
	$("#menu div").each(function(){
	   $(this).mouseover(function(){
		 $(this).children("ul").slideDown("fast");
			 if($.browser.msie) { var hauteur = $(this).width(); $(this).children("ul").css({marginLeft:"-"+hauteur+"px"});   }
			 $(this).prev().children("ul").fadeOut("fast");
		 $(this).siblings().children("ul").fadeOut("fast");
		
	   });
	});
	$("body").click(function(){
	  $("#menu div ul").fadeOut("fast");
	});
	
	/*$("#test").hover(function(){
	  $(this).css("background-color","#4E8FAD");						   
	});*/
	
	$("#test").hover(
      function () {
        $(this).css("background-color","#4E8FAD");
      }, 
      function () {
        $(this).css("background-color","#FFFFFF");
      }
    );
	
	
	
	

});