function rowOver(row, rowColor)
{
	var arCells = row.getElementsByTagName("td");

	for (var i = 0; i < arCells.length; i++)
	{
		var td = arCells[i];

		td.oldBackgroundColor = td.style.backgroundColor;
		td.style.backgroundColor = rowColor;
	}
}


/*----------------------------------------
Restores the row's original background color.
----------------------------------------*/
function rowOut(row)
{
	var arCells = row.getElementsByTagName("td");

	for (var i = 0; i < arCells.length; i++)
	{
		var td = arCells[i];

		td.style.backgroundColor = td.oldBackgroundColor;
	}
}