// JavaScript Document
function hoverOn(hoverID){
	document.getElementById(hoverID).style.visibility = 'visible';
}

function hoverOff(hoverID){
	document.getElementById(hoverID).style.visibility = 'hidden';
}
