function showRolloverText(divID){
	var theDiv = document.getElementById(divID);
	theDiv.style.visibility = "visible";
}

function hideRolloverText(divID){
	var theDiv = document.getElementById(divID);
	theDiv.style.visibility = "hidden";
}