$(document).ready(function() {
    $("ul.nav li").hover(
        function() {
            $("ul", $(this)).css("top", "37px");
            $("ul", $(this)).css("left", "0");
            $("ul", $(this)).stop(true, true).slideDown(500);
        }, 
        function() {
            $("ul", $(this)).css("top", "-999em");
            $("ul", $(this)).stop(true, true);
            $("ul", $(this)).css("display", "none");
        }
    );
});
