<!--
// filename: images_functions.js
// floats the menu over all of the other objects

function imgOn(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "over.src");
	}
}

function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "out.src");
	}
}
// -->

