﻿// JavaScript Document
$(function(){

/* 表格变色 */
$("table#tab1 tbody tr").mouseover(function(){
	  $(this).css("background-color","#ffba00");
	  $(this).addClass("over");}).mouseout(function(){ 
	  $(this).css("background-color","#feffbc");
	  $(this).removeClass("over");})

$("table#tab2 tbody tr").mouseover(function(){
	  $(this).css("background-color","#4cd7e0");
	  $(this).addClass("over");}).mouseout(function(){ 
	  $(this).css("background-color","#feffbc");
	  $(this).removeClass("over");})

$("table#tab3 tbody tr").mouseover(function(){
	  $(this).css("background-color","#afe04c");
	  $(this).addClass("over");}).mouseout(function(){ 
	  $(this).css("background-color","#feffbc");
	  $(this).removeClass("over");})
});

//家族联盟表格样式控制

$(function(){
	$("table.jz tbody tr:even,table.xz tbody tr:even").addClass("tds");	
});