homeOn = new Image(); homeOn.src = "on/home.gif";
systemOn = new Image(); systemOn.src = "on/system.gif";
savingsOn = new Image(); savingsOn.src = "on/savings.gif";
actionOn = new Image(); actionOn.src = "on/action.gif";
galleryOn = new Image(); galleryOn.src = "on/gallery.gif";
productsOn = new Image(); productsOn.src = "on/products.gif";
greenOn = new Image(); greenOn.src = "on/green.gif";
libraryOn = new Image(); libraryOn.src = "on/library.gif";
pressOn = new Image(); pressOn.src = "on/press.gif";
requestinfoOn = new Image(); requestinfoOn.src = "on/requestinfo.gif";

function imgOn(imgName) {
	document [imgName].src = eval((imgName) + "On.src");
}
function imgOff(imgName) {
	document [imgName].src = "off/" + (imgName) + ".gif";
}

function imgOnB(imgName) {
	document [imgName+"B"].src = eval((imgName) + "On.src");
}
function imgOffB(imgName) {
	document [imgName+"B"].src = "off/" + (imgName) + ".gif";
}

function testimonial(imgName) {
	document ["largeview"].src = "testimonials/" + (imgName);
}
function testimonialB(imgName) {
	document ["largeview"].src = "photos/" + (imgName);
}
function testimonialC(imgName) {
	document ["largeviewTwo"].src = "photos/" + (imgName);
}

function menuOn(section) {
	var menu = "menu_" + section;
	if (document.getElementById) {
		document.getElementById([menu]).style.visibility="visible";
	}
}
function menuOff(section) {
	var menu = "menu_" + section;
	if (document.getElementById) {
		document.getElementById([menu]).style.visibility="hidden";
	}
}