$(document).ready(function(){
  $('#menu li ul').css({
    display: "none",

  });
  $('#menu li').hover(function() {
    $(this)
      .find('ul')
      .stop(true, true)
      .slideDown('slow');
  }, function() {
    $(this)
      .find('ul')
      .stop(true,true)
      .fadeOut('slow');
  });
});

