jQuery(document).ready(function()
{
    jQuery("#top_menu li").hover(function()
    {
        jQuery(".ssmenu", this).fadeIn(5);
    },
    function()
    {
        jQuery(".ssmenu", this).stop(true,true).slideUp(500);
    });
});