﻿function setTab(a) {
    $(a + " span:first").addClass("current"); //为第一个SPAN添加当前效果样式
    $(a + " > div:not(:first)").hide(); //隐藏其它的UL
    $(a + " span").mouseover(function() {
    $(a + " span").removeClass("current"); //去掉所有SPAN的样式
        $(this).addClass("current");
        $(a + " > div").hide();
        $("." + $(this).attr("id")).fadeIn('slow');
    });
}
function setClickTab(a) {
    $(a + " span:first").addClass("current"); //为第一个SPAN添加当前效果样式
    $(a + " > div:not(:first)").hide(); //隐藏其它的UL
    $(a + " span").click(function() {
        $(a + " span").removeClass("current"); //去掉所有SPAN的样式
        $(this).addClass("current");
        $(a + " > div").hide();
        $("." + $(this).attr("id")).fadeIn('slow');
    });
}
function setHitsTab(a, no) {
    $(a + " span:first").addClass("current"); //为第一个SPAN添加当前效果样式
    $(a + " > div:not(:first)").hide(); //隐藏其它的UL
    $(a + " span:not(:eq("+no+"))").click(function() {
        $(a + " span").removeClass("current"); //去掉所有SPAN的样式
        $(this).addClass("current");
        $(a + " > div").hide();
        $("." + $(this).attr("id")).fadeIn('slow');
    });
}
