﻿// JScript 文件
$().ready(function() {

  $(".ctab_01 span").hover(function() {
        $(".ctab_01 span").css("background-color", "#e8f4fc");
        $(".ctab_01 span a").css("color", "#000");
        $(this).css("background-color", "#ffffff");
        $(this).find("a").css("color", "#000");
        $(".ctab_01 ul").css("display", "none");
        $("#tt" + $(this).index(".ctab_01 span")).css("display", "block");
    });
  
   
  $(".new_1top span").hover(function(){
    var i=$(".new_1top span").index($(this));
    $(this).siblings().removeClass("current").end().attr("class","current");
    $(".newtab_box>div").attr("class","disno").eq(i).attr("class","new_1con");	
    });
  
});




