$(document).ready(function() {
    $("ul#main-tb>li, ul#tb>li").hover(showmenu, hidemenu);
});

function showmenu() {
    var m=this;
    clearTimeout(m.t_out);
    m.t_over=setTimeout(function() {
        $(m).addClass("hover").siblings(".hover").removeClass("hover");
        m=null;
    }, 20);
}
function hidemenu() {
    var m=this;
    clearTimeout(m.t_over);
    m.t_out=setTimeout(function() {
        $(m).removeClass("hover");
        m=null;
    }, 400);
}
