function MenuItemMouseOver(tableCell)
{
	tableCell.style.backgroundColor="#e0e0e0";
	tableCell.style.borderColor="#cccccc";
}
function MenuItemMouseOut(tableCell)
{
	tableCell.style.backgroundColor="";
	tableCell.style.borderColor="#e0e0e0";
}
