<!--
if (document.images) {

companyon = new Image(126,29);
companyon.src = "/images/interior/company_on.gif";
companyoff = new Image(126,29);
companyoff.src = "/images/interior/company_off.gif";

stagingon = new Image(126,29);
stagingon.src = "/images/interior/staging_on.gif";
stagingoff = new Image(126,29);
stagingoff.src = "/images/interior/staging_off.gif";

galleryon = new Image(126,29);
galleryon.src = "/images/interior/gallery_on.gif";
galleryoff = new Image(126,29);
galleryoff.src = "/images/interior/gallery_off.gif";

equipmenton = new Image(126,29);
equipmenton.src = "/images/interior/equipment_on.gif";
equipmentoff = new Image(126,29);
equipmentoff.src = "/images/interior/equipment_off.gif";

newson = new Image(126,29);
newson.src = "/images/interior/news_on.gif";
newsoff = new Image(126,29);
newsoff.src = "/images/interior/news_off.gif";

contacton = new Image(126,29);
contacton.src = "/images/interior/contact_on.gif";
contactoff = new Image(126,29);
contactoff.src = "/images/interior/contact_off.gif";

}

function img_act(imgName) {
	if (document.images) {
	imgOn = eval(imgName + "on.src");
	document [imgName].src = imgOn;
	}
}

function img_inact(imgName) {
	if (document.images) {
	imgOff = eval(imgName + "off.src");
	document [imgName].src = imgOff;
	}
}
//-->