var curColor = null;
var curObject = null;

function RowMouseOver(cell)
{
	curColor = cell.style.backgroundColor;
	cell.style.backgroundColor = "silver";
	cell.style.color = "#000000";
}

function RowMouseOut(cell)
{
    cell.style.backgroundColor = curColor;
    cell.style.color = "";    
}