var orig_class="";
function OnOverRowChange(row){
	
	z=row.rowIndex;
	orig_class=row.style.backgroundColor;
	if (row.id=='red'){
// 	i=document.getElementById('sections').rows[z];
row.style.backgroundColor='#eaeaea';
// 		i.style.backgroundColor='#eaeaea';
		}
// 		else if (row.id=='left_table') {
// 			i=document.getElementById('compare').rows[z];
// 			row.style.backgroundColor='#8dc6e6';
// 			i.style.backgroundColor='#8dc6e6';
// 			}
}

function OnOutRowChange(row){
	row.style.backgroundColor=orig_class;
// 	i.style.backgroundColor=orig_class;
}