// JavaScript Document
function toggle(t, i) {
	var o = document.getElementById(i);
	if (o.style.display == "" || o.style.display == "block") {
		o.style.display = "none";
		t.className = "close";
	}
	else {
		o.style.display = "block";
		t.className = "open";
	}
}

function setTab(name,cursel,n){ 
for(i=1;i<=n;i++){ 
var menu=document.getElementById(name+i); 
var con=document.getElementById("con_"+name+"_"+i); 
menu.className=i==cursel?"hover":""; 
con.style.display=i==cursel?"block":"none"; 
} 
} 

$(function(){
$(".mytable01 tbody tr").each(function(i){ this.style.backgroundColor  =  ['#fff','#f2f7fb'][i%2]   })   
})


$(function(){
$(".mytable02 tbody tr").each(function(i){ this.style.backgroundColor  =  ['#fff','#f5f4f2'][i%2]   })   
})

