var currentClass = "", lasstClass = "", currentLanguage = "汉语", currentInfoType = "图文";
function jump(type, value) {            switch (type) {
                case "class":
                    lasstClass = currentClass;
                    currentClass = value;
                    //if(document.getElementById(lasstClass)) {document.getElementById(lasstClass).style.color="#F60";}
                    document.picList.location.href = "listShow/picList.asp?table_Name=" + value + "&language=" + currentLanguage;
                    document.audList.location.href = "listShow/audList.asp?table_Name=" + value + "&language=" + currentLanguage;
                    document.medList.location.href = "listShow/medList.asp?table_Name=" + value + "&language=" + currentLanguage;
                    if (currentClass == "") {
                        document.introduce.location.href = "introShow.asp?language=" + currentLanguage + "&infoType=" + currentInfoType + "&table_Name=全部";
                    }
                    else {
                        document.introduce.location.href = "introShow.asp?language=" + currentLanguage + "&infoType=" + currentInfoType + "&table_Name=" + currentClass;
                    }
                    break;
                case "lan":
                    currentLanguage = value;
                    if (currentLanguage == "汉语") {
document.getElementById("hanyu").className = 'lang_selected';
document.getElementById("zangyu").className = 'lang_unselected';
                        document.getElementById("hotPic").style.background = "url(CSS/images/tiao_pic.png)";
                        document.getElementById("hotMed").style.background = "url(CSS/images/tiao_med.png)";
                        document.getElementById("hotAud").style.background = "url(CSS/images/tiao_aud.png)";
                        document.getElementById("han").style.display = "block";
                        document.getElementById("zang").style.display = "none";
                        document.getElementById("searchByPin").style.display = "block";
                        document.getElementById("searchByZW").style.display = "none";
                        document.getElementById("barPic").innerHTML="图文";
document.getElementById("barMed").innerHTML="视频";
document.getElementById("barAud").innerHTML="音频";
                    }
                    else {
document.getElementById("hanyu").className = 'lang_unselected';
document.getElementById("zangyu").className = 'lang_selected';
                        document.getElementById("hotPic").style.background = "url(CSS/images/tiao_pic_zw.png)";
                        document.getElementById("hotMed").style.background = "url(CSS/images/tiao_med_zw.png)";
                        document.getElementById("hotAud").style.background = "url(CSS/images/tiao_aud_zw.png)";
                        document.getElementById("zang").style.display = "block";
                        document.getElementById("han").style.display = "none";
                        document.getElementById("searchByPin").style.display = "none";
                        document.getElementById("searchByZW").style.display ="block";
document.getElementById("barPic").innerHTML="<font style='font-family:ZW;font-size:22px;'>&#62890;&#3942;&#3851;&#62884;&#3906;&#3853;</font>";
document.getElementById("barMed").innerHTML="<font style='font-family:ZW;font-size:22px;'>&#3926;&#62451;&#3923;&#3851;&#3936;&#62658;&#3923;&#3853;</font>";
document.getElementById("barAud").innerHTML="<font style='font-family:ZW;font-size:22px;'>&#62354;&#3851;&#62858;&#3942;&#3853;</font>";
                    }
                    document.picList.location.href = "listShow/picList.asp?language=" + currentLanguage;
                    document.audList.location.href = "listShow/audList.asp?language=" + currentLanguage;
                    document.medList.location.href = "listShow/medList.asp?language=" + currentLanguage;
                    if (currentClass == "") {
                        document.introduce.location.href = "introShow.asp?language=" + currentLanguage + "&infoType=" + currentInfoType + "&table_Name=全部";
                    }
                    else {
                        document.introduce.location.href = "introShow.asp?language=" + currentLanguage + "&infoType=" + currentInfoType + "&table_Name=" + currentClass;
                    }
                    break;
                case "pin":
                    document.picList.location.href = "listShow/picList.asp?language=" + currentLanguage + "&pin=" + value;
                    document.audList.location.href = "listShow/audList.asp?language=" + currentLanguage + "&pin=" + value;
                    document.medList.location.href = "listShow/medList.asp?language=" + currentLanguage + "&pin=" + value;
                    break;
                case "infoType":
                    currentInfoType = value;
                    if (currentClass == "") {
                        document.introduce.location.href = "introShow.asp?language=" + currentLanguage + "&infoType=" + currentInfoType + "&table_Name=全部";
                    }
                    else {
                        document.introduce.location.href = "introShow.asp?language=" + currentLanguage + "&infoType=" + currentInfoType + "&table_Name=" + currentClass;
                    }
                    break;
                case "search":
                    document.picList.location.href = "listShow/picList.asp?language=" + currentLanguage + "&search=" + document.getElementById("searchBy").value.toString();
                    document.audList.location.href = "listShow/audList.asp?language=" + currentLanguage + "&search=" + document.getElementById("searchBy").value.toString();
                    document.medList.location.href = "listShow/medList.asp?language=" + currentLanguage + "&search=" + document.getElementById("searchBy").value.toString();
                    break;
            }        }