/*
	Attach the "oddRow" style to all odd rows of all tables with class "alternatingRows".
	In combination with css, this makes for greater readability.
*/
	if (document.getElementsByTagName) {
		var tables = document.getElementsByTagName('table');
		for (var i = 0; i < tables.length; i++) {
			if (tables[i].className.indexOf('alternatingRows') == -1) continue;
			var trs = tables[i].getElementsByTagName('tr');
			for (var j = 0; j < trs.length; j+=2) trs[j].className = 'oddRow'
		}
	}

