// JavaScript Document

window.onload = initStyles;

function initStyles() {
	altRowColor();
}

function altRowColor() {
	if (document.getElementsByTagName("table")) {
		var table_rows = document.getElementsByTagName("tr");
		
		for (var i=1; i<table_rows.length; i=i+2) {
			table_rows[i].className="even";
		}
	}
}
