//modified from Noel Diaz
//http://itd22.lib.purdue.edu/dnet/

hilite();

function hilite(){
	var rows = document.getElementsByTagName('tr');
	var current_row;
	
	for (var i = 0; i < rows.length; i++) {
		
		
		rows[i].className = (i%2==0)?'even':'odd';
		
		
		rows[i].onmouseover = function() {
			this.className += ' hilite';
		}
		rows[i].onmouseout = function() {
			this.className = this.className.replace('hilite', '');
		}
	}
}