/*
 * 标签切换
 */
function TabChange(tab,content,active,other){
    var tab_index;
    $("#"+tab).children().mouseover(
        function(){
            tab_index=$(this).prevAll().length;
            $("#"+tab).children().removeClass(active);
            $("#"+tab).children().addClass(other);
            $(this).removeClass(other);
            $(this).addClass(active);

            $("#"+content).children().hide();
            $("#"+content).children().eq(tab_index).show();
        }
    );
}