// - get the TR tags that are contained in the 'hilite' element (the table)
var r=document.getElementById('hilite').getElementsByTagName('tr'); 
// - total number of TR tags
var l=r.length; 

var startColor = document.getElementsByTagName("body")[0].style.backgroundColor
for (i=0;i<l;i++){
	 r[i].style.backgroundColor='#FAF9E7';
       r[i].setAttribute('onmouseover','this.style.backgroundColor="#EEF3D8" ');
     r[i].setAttribute('onmouseout','this.style.backgroundColor="#FAF9E7" ');
    }

