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