var imageNames = new Array("news", "about", "services", "policies", "forms", "aesthetics");
var imgPath = "images/i-";
browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))
if (browser) {
	for (i = 0; i < imageNames.length; i++) {
	var image = imageNames[i];
		eval(image + "1Obj = new Image()");
		eval(image + "1Obj.src = imgPath + image + '-off.gif'");
		eval(image + "2Obj = new Image()");
		eval(image + "2Obj.src = imgPath + image + '-on.gif'");
	}
}

function ON(imgName) {
	if (browser) {
	//alert(imgName);
		eval("document."  +  imgName  +  ".src = "  + imgName + "2Obj.src");
	}
}

function OFF(imgName) {
	if (browser) {
		eval("document."  +  imgName  +  ".src = "  +  imgName  +  "1Obj.src");
	}
}