<!--
// ---------------------- BEGIN: multi-purpose swap images
if (document.images) {
	// array of image names
	var imgAry = new Array("nav_arrow.gif", "nav_arrow_off.gif");

	// path where images are located
	var imgLoc = "http://www.maximumsuccess.com/replicated_resources/pics/";
	
	// loads all the images before the page is displayed so there is no delay when changing images
	for (var i=0; i < imgAry.length; i++) {	
		eval(stripExtention(imgAry[i]) + " = new Image();");
		eval(stripExtention(imgAry[i]) + ".src = \"" + imgLoc + imgAry[i] + "\";");
	}
}
function stripExtention(filename) {
	return filename.substring(0, filename.indexOf('.'));
}

function changeImage(source, newImage) {
    if (document.images) {
	eval("document." + source + ".src = " + stripExtention(newImage) + ".src;");
    }
}
// ---------------------- END: multi-purpose swap images
//-->