$(document).ready(function() {
    $("ul#sf-menu > li").each(function(){
        $(this).bind("mouseenter", function(){
            if ($(this).children("ul").css('display') == 'none')
            {
                $("ul#sf-menu li ul").css('display', 'none');
                $(this).children("ul").slideDown("fast");
            }
        });
    });
});
