function initHiliteTable() {
	var allTableRows = document.getElementsByTagName('tr');
	for ( var i = 0; i < allTableRows.length; i++ )
		if ( allTableRows.item(i).className.indexOf('hilite') >= 0 ) {
			allTableRows.item(i).onmouseover = function() { this.className = 'hilite-hover'; }
			allTableRows.item(i).onmouseout = function() { this.className = 'hilite'; }
		}
}
if ( window.attachEvent ) { window.attachEvent('onload', initHiliteTable); }
