$(document).ready(function(){
        $('#menu>li').bind('mouseleave',function(){
          $(this).children('ul').hide();
        }).bind('mouseenter',function(){
          $(this).children('ul').show();
        });
});
