// JavaScript Document
function MouseOverBkg(id, color)
{
	document.getElementById(id).style.backgroundColor = color;
}

function MouseOutBkg(id, color)
{
	document.getElementById(id).style.backgroundColor = color;
}

function MouseOverText(id, color)
{
	document.getElementById(id).style.color = color;
}

function MouseOutText(id, color)
{
	document.getElementById(id).style.color = color;
}