jQuery(document).ready(function() {
    jQuery("#menu li").hover(
        function(){ jQuery("ul", this).fadeIn("fast");},
        function(){ jQuery("ul", this).fadeOut("slow"); }
    );

});
