$(function() {

    // IE 6 Menu 
    if ($.browser.msie && $.browser.version <= 6)
    {
        $('.b-menu_top ul > li').hover(function(){$('ul', this).show();}, function(){ $('ul', this).hide();});
        $('.b-menu_top ul li ul li').hover(function(){ $('a', this).addClass('hover');}, function(){ $('a', this).removeClass('hover'); });
    }

});

