function MysOver(id)
{
	var mObj = document.getElementById(id);

	mObj.style.color = '#ffffff';
	mObj.style.backgroundColor = '#225588';
}

function MysOut(id)
{
	var mObj = document.getElementById(id);
	mObj.style.color = '#ffffff';
	mObj.style.backgroundColor = '#ffcc00';
}
