function HILITE() {
	if (document.getElementById && document.createTextNode) {					// modern browser only
		var myTABLE=document.getElementsByTagName("table");
		for (var i=0; i<myTABLE.length; i++) {
			var myROW=myTABLE[i].getElementsByTagName("tr");
			for (var j=0; j<myROW.length; j++) {
				myROW[j].onmouseover = function(){this.className='colorme'; return false}
				myROW[j].onmouseout  = function(){this.className=''; return false}
			}
		}
	}
}
window.onload=function(){HILITE();}
