
$(document).ready(function(){
$("#menu div").each(function(){
   $(this).mouseover(function(){
     $(this).children("ul").slideDown("fast");
         $(this).prev().children("ul").fadeOut("slow");
     $(this).siblings().children("ul").fadeOut("slow");
   });
});
$("body").click(function(){
  $("#menu div ul").fadeOut("slow");
});

});