var row_color, menu_tab;

function row_hover_over()
{
	row_color = window.event.srcElement.parentElement.bgColor;
	window.event.srcElement.parentElement.style.backgroundColor = '#D0E2F0';
}
function row_hover_out()
{
	window.event.srcElement.parentElement.style.backgroundColor = row_color;
}
function cell_over()
{
	menu_tab = window.event.srcElement.parentElement.bgColor;
	window.event.srcElement.parentElement.style.backgroundColor = '#F7F3E6';
}
function cell_out()
{
	window.event.srcElement.parentElement.style.backgroundColor = menu_tab;
}


function rowMouseOver(e,newClass)
{
e.className = newClass;
}
function rowMouseOut(e,newClass)
{
e.className = newClass;
}
