$(document).ready(function() {
  $('ul#menu > li').hover(function() {
      $(this).addClass('hover');              // Add/remove hover class to get the 
  }, function() {                             // nested ul to be displayed on hover
      $(this).removeClass('hover'); 
  });
});