$(document).ready(function(){
    $("#nav ul li").hover(
        function(){ $("ul", this).fadeIn("fast"); }, 
        function() { $("ul", this).fadeOut("fast"); } 
    );
});