jQuery(function(){
     jQuery("#nav li").hover(function(){
        // Ao passar o mouse
        jQuery(this).children(".submenu").stop(true,true).fadeIn(600);
     },function(){
        // Ao tirar o mouse
        jQuery(this).children(".submenu").stop(true,true).fadeOut(300);
     })
})
