jQuery(document).ready(function () {
    
   jQuery("#nav > li:gt(0) > a").mouseover(function () {
    
        jQuery(this).siblings("ul").css({ display: 'block' });
    
   });
   
   jQuery("#nav > li:gt(0)").mouseleave(function () {
    
        jQuery(this).find("ul").css({ display: 'none' });
    
   });
     
});

