window.onload = TrColor;
function TrColor(){
	// ページ内のテーブルを取得
	var table = document.getElementsByTagName("tbody");
	for(i=0; i<table.length; i++){
		tr = table[i].getElementsByTagName("tr");
		for(j=0; j<tr.length; j++){
			// 偶数の時
			if (j % 2 == 0) {
				tr[j].className = "odd";
			}
		}
	}
}
