<!--

function ColorRows( ) {
	var oTable = document.getElementsByTagName("table");
	var modRemainder;
	var newClass;
	for (var i=0; i<oTable.length; i++) {
		if ( 'nozebra' != oTable[i].className ) {
			var oRows = oTable[i].getElementsByTagName("TR");
			for (var j=0; j<oRows.length; j++) {
				if (j == 0) continue;
				modRemainder = j % 2;
				newClass = (modRemainder == 0) ? "rowColor1" : "rowColor2";
				oRows[j].className = newClass;
			}
		}
	}
}

function init() {
	ColorRows();
}

// -->
