/**************************************************************
*  Rollover scripts
*  By Jim Thomas
*
*  Image name comes from the name of the original image source.
*  The rollover names have _over _click and _out by convention.
**************************************************************/
default_click = new Image;
default_click.src = "images/menu/default_click.gif";
function imageOver(imgName) {
	imgID = imgName.substring(1);
	eval("document." + imgName + ".src = " + imgID + "_over.src");
}

function imageClick(imgName) {
	imgID = imgName.substring(1);
	eval("document." + imgName + ".src = " + "click_" + imgID + ".src");
}

function imageOut(imgName) {
	eval("document." + imgName + ".src = " + imgID + ".src");
}
