jQuery(document).ready(function(){ 
       $('div#menu ul li').mouseover(function() { 
         $(this).children('ul').addClass('on');
       }); 
       $('div#menu ul li').mouseout(function() { 
         $(this).children('ul').removeClass('on');
      }); 
});





    