$(document).ready(function(){
    
});

var ShowLastPage_Top = 1;
var ShowLastPage_D = 1;
function GetById(i) {
    return document.getElementById(i);
}
function ShowPage(i) {
    if (i == ShowLastPage_Top) return;
    GetById("HotPicList_" + ShowLastPage_Top).style.display = 'none';
    GetById("HotNav_" + ShowLastPage_Top).className = 'HotNav_02';
    GetById("HotPicList_" + i).style.display = '';
    GetById("HotNav_" + i).className = 'HotNav_01';
    ShowLastPage_Top = i;
}
function ShowPage_D(i) {
    if (i == ShowLastPage_D) return;
    GetById("StoreList_" + ShowLastPage_D).style.display = 'none';
    GetById("SwitBlock_" + ShowLastPage_D).className = 'SwitBlock02';
    GetById("StoreList_" + i).style.display = '';
    GetById("SwitBlock_" + i).className = 'SwitBlock01';
    ShowLastPage_D = i;  
}
//新增加无数量限制选项卡效果  zr
function setTab(name,cursel,n){
    for(i=1;i<=n;i++){
        var menu=document.getElementById(name+i);
        var con=document.getElementById("con_"+name+"_"+i);
        menu.className=i==cursel?"hover":"";
        con.style.display=i==cursel?"block":"none";
    }
}
