function setTab(name,m,n){ 
    for( var i=1;i<=n;i++){ 
    var menu = document.getElementById(name+i); 
    var showDiv = document.getElementById("cont_"+name+"_"+i); 
    menu.className = i==m ?"on":""; 
    showDiv.style.display = i==m?"block":"none"; 
    } 
}

/*尾部友情链接 开始*/
$(function () {
    $(".footernav li").hover(function () {
        $(this).children(".sub").stop().slideDown(200);
    }, function () {
        $(this).children(".sub").stop().slideUp(200);
    });
});