// Basic Javascript functions for the TMS website.

function imgRoll(imgID, imgPath) {
	document.getElementById(imgID).src = imgPath;
}

function hoverChange(divID, stateCHG) {
	document.getElementById(divID).style.visibility = stateCHG;
}
