function switchitemshow(){
    var itemlist   = [
    ["","====服__务===="],
    ["/other/huiyuan.php","　会员服务"],
    ["/zazhi/","　杂志服务"],
    ["/xxfw/","　线下服务"],
    ["http://host.zjfe.com","　网站推广"],
    ["http://www.e635.net","　行业软件"],
    ["/mthz/","　媒体合作"],
    ["","====商__务===="],
    ["/info/index.php","　供求信息"],
    ["/bidding/index.php","　招标信息"],
    ["/product/index.php","　产品大全"],
    ["/company/index.php","　供应商库"],
    ["/bank/index.php","　金融机构"],
    ["/office/index.php","　会员办公室"],
    ["","====文__章===="],
    ["/article/index.php","　文章导航"],
    ["/article/forbank/","　银行动态"],
    ["/article/article/","　行业资讯"],
    ["/article/financeres/","　财经资讯"],
    ["/article/bidknow/","　招标知识"],
    ["/article/exhibit/","　展会信息"],
    ["/article/caseres/","　金融方案"],
    ["/article/analyse/" ,"　行业研究"],
    ["/article/techres/","　机具技术"],
    ["/money/","　钱币及防伪"],
    ["http://www.jrjj.cn","　金融经济杂志"]
    ];
    var oSlt=document.getElementById("sltSwitch");
    var oOption;
    if (!oSlt) return false;
    oSlt.style.fontSize="12px";
    oSlt.style.lineHeight="150%";
    for(var i=0;i<itemlist.length;i++){
        oOption=document.createElement("option");
        oOption.text=itemlist[i][1];
        oOption.value=itemlist[i][0];
        if (itemlist[i][0]=="") {
            oOption.style.color="blue";
            oOption.style.background="#EDEDED";
        }
        oSlt.options.add(oOption);
    }
}
switchitemshow();