
function textColorOver(id, col)
{
	var testObj = document.getElementById(id);
	testObj.style.color = col;
}

function textColorOut(id, col)
{
	var testObj = document.getElementById(id);
	testObj.style.color = col;
}

