jQuery(document).ready(function()
{
    jQuery('.ssmenu ul').each(function()
    {
        jQuery('li:first', this).find('a').css('background-image', 'none');
    });
    jQuery('.menu_home ul li').removeClass('current');
    jQuery("#menu ul li").each(function(){
        if(jQuery(this).hasClass('current')){
            jQuery('ul',this).show();
            jQuery('ul li',this).removeClass('current ');
        }
        if(jQuery('ul li', this).hasClass('current')){
            jQuery('ul',this).show();
            jQuery('ul',this).parent().parent().addClass('current');
        }
    });
});
