window.onload = TrColor;
function TrColor(){
	var table = document.getElementsByTagName("table");	
	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 = "trColor";
			}
		}	
	}
}

