﻿var mouseOutColor;
function DataGridMouseOverRow(source, mouseOverColor)
{
	mouseOutColor = source.style.backgroundColor;
	source.style.backgroundColor = mouseOverColor;
}

function DataGridMouseOutRow(source)
{
	source.style.backgroundColor = mouseOutColor;
}

