function dash_trMouseOver(id)
{
	document.getElementById(id + '1').bgColor = '#E1EDF9';
	document.getElementById(id + '1').style.cursor = 'pointer';
}
function dash_trMouseOut(id)
{
	document.getElementById(id + '1').style.bgColor = '#F3F8FC';
	document.getElementById(id + '1').style.cursor = 'default';
}

function imgMouseOver(id)
{
	document.getElementById(id).style.border = '1px solid #6ba4e3';
	document.getElementById(id + '1'.style).style.cursor = 'pointer';
}
function imgMouseOut(id)
{
	document.getElementById(id).style.border = '0px';
	document.getElementById(id).style.cursor = 'default';
}

function menu_tdMouseOver(id)
{
	document.getElementById(id).bgColor = '#E1EDF9';
	document.getElementById(id).style.cursor = 'pointer';
}
function menu_tdMouseOut(id)
{
	document.getElementById(id).bgColor = '#F3F8FC';
	document.getElementById(id).style.cursor = 'default';
}

function menu_liMouseOver(id)
{
	document.getElementById(id).style.display = 'block';
}
function menu_liMouseOut(id)
{
	document.getElementById(id).style.display = 'none';
}
