window.onload = TrColor;function TrColor(){	// $B%Z!<%8Fb$N%F!<%V%k$r<hF@(B	var table = document.getElementsByTagName("table");	for(i=0; i<table.length; i++){		tr = table[i].getElementsByTagName("tr");		for(j=0; j<tr.length; j++){			// $B6v?t$N;~(B			if (j % 2 == 0) {				tr[j].className = "trColor";			}			else{			tr[j].className = "trColor2";			}		}	}}