<!--
if (document.images) {
// Active Images
	but1on = new Image();
	but1on.src = "images/L-home_on.jpg";
	but2on = new Image();
	but2on.src = "images/L-about_on.jpg";
	but3on = new Image();
	but3on.src = "images/L-locations_on.jpg";
	but4on = new Image();
	but4on.src = "images/L-engineering_on.jpg";
	but5on = new Image();
	but5on.src = "images/L-tech_on.jpg";
	but6on = new Image();
	but6on.src = "images/L-partners_on.jpg";
	but7on = new Image();
	but7on.src = "images/L-careers_on.jpg";
	but8on = new Image();
	but8on.src = "images/L-contact_on.jpg";
	but9on = new Image();
	but9on.src = "images/L-english_on.jpg";
	but10on = new Image();
	but10on.src = "images/L-francais_on.jpg";
	but11on = new Image();
	but11on.src = "images/L-espanol_on.jpg";
// Homepage Images
	but12on = new Image();
	but12on.src = "images/H-home_on.jpg";
	but13on = new Image();
	but13on.src = "images/H-about_on.jpg";
	but14on = new Image();
	but14on.src = "images/H-locations_on.jpg";
	but15on = new Image();
	but15on.src = "images/H-engineering_on.jpg";
	but16on = new Image();
	but16on.src = "images/H-tech_on.jpg";
	but17on = new Image();
	but17on.src = "images/H-partners_on.jpg";
	but18on = new Image();
	but18on.src = "images/H-careers_on.jpg";
	but19on = new Image();
	but19on.src = "images/H-contact_on.jpg";

// Deactive Images
	but1off = new Image();
	but1off.src = "images/L-home.jpg";
	but2off = new Image();
	but2off.src = "images/L-about.jpg";
	but3off = new Image();
	but3off.src = "images/L-locations.jpg";
	but4off = new Image();
	but4off.src = "images/L-engineering.jpg";
	but5off = new Image();
	but5off.src = "images/L-tech.jpg";
	but6off = new Image();
	but6off.src = "images/L-partners.jpg";
	but7off = new Image();
	but7off.src = "images/L-careers.jpg";
	but8off = new Image();
	but8off.src = "images/L-contact.jpg";
	but9off = new Image();
	but9off.src = "images/L-english.jpg";
	but10off = new Image();
	but10off.src = "images/L-francais.jpg";
	but11off = new Image();
	but11off.src = "images/L-espanol.jpg";
// Homepage Images
	but12off = new Image();
	but12off.src = "images/H-home.jpg";
	but13off = new Image();
	but13off.src = "images/H-about.jpg";
	but14off = new Image();
	but14off.src = "images/H-locations.jpg";
	but15off = new Image();
	but15off.src = "images/H-engineering.jpg";
	but16off = new Image();
	but16off.src = "images/H-tech.jpg";
	but17off = new Image();
	but17off.src = "images/H-partners.jpg";
	but18off = new Image();
	but18off.src = "images/H-careers.jpg";
	but19off = new Image();
	but19off.src = "images/H-contact.jpg";
	
}

// Function to 'activate' images.
function imgOn(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "on.src");
	}
}

// Function to 'deactivate' images.
function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "off.src");
	}
}
//-->
