// preload images if using hovers -
// it's a good idea for SEO purposes to place this
// code on an external JavaScript file in the includes directory.

	if (document.images) {

	homeon = new Image(60, 34);
	homeon.src = "/images/core/nav/home-on.gif";
	homeoff = new Image(60, 34);
	homeoff.src = "/images/core/nav/home-off.gif";

	aboutuson = new Image(83, 34);
	aboutuson.src = "/images/core/nav/about-on.gif";
	aboutusoff = new Image(83, 34);
	aboutusoff.src = "/images/core/nav/about-off.gif";

	factson = new Image(91, 34);
	factson.src = "/images/core/nav/facts-on.gif";
	factsoff = new Image(91, 34);
	factsoff.src = "/images/core/nav/facts-off.gif";
	
	serviceson = new Image(80, 34);
	serviceson.src = "/images/core/nav/services-on.gif";
	servicesoff = new Image(80, 34);
	servicesoff.src = "/images/core/nav/services-off.gif";
	
	incentiveson = new Image(201, 34);
	incentiveson.src = "/images/core/nav/incentives-on.gif";
	incentivesoff = new Image(201, 34);
	incentivesoff.src = "/images/core/nav/incentives-off.gif";
	
	clientson = new Image(75, 34);
	clientson.src = "/images/core/nav/clients-on.gif";
	clientsoff = new Image(75, 34);
	clientsoff.src = "/images/core/nav/clients-off.gif";
	
	presson = new Image(102, 34);
	presson.src = "/images/core/nav/pressroom-on.gif";
	pressoff = new Image(102, 34);
	pressoff.src = "/images/core/nav/pressroom-off.gif";
	
	contactuson = new Image(101, 34);
	contactuson.src = "/images/core/nav/contact-on.gif";
	contactusoff = new Image(101, 34);
	contactusoff.src = "/images/core/nav/contact-off.gif";

	homeinton = new Image(60, 34);
	homeinton.src = "/images/core/nav-int/home-on.gif";
	homeintoff = new Image(60, 34);
	homeintoff.src = "/images/core/nav-int/home-off.gif";

	aboutusinton = new Image(83, 34);
	aboutusinton.src = "/images/core/nav-int/about-on.gif";
	aboutusintoff = new Image(83, 34);
	aboutusintoff.src = "/images/core/nav-int/about-off.gif";

	factsinton = new Image(91, 34);
	factsinton.src = "/images/core/nav-int/facts-on.gif";
	factsintoff = new Image(91, 34);
	factsintoff.src = "/images/core/nav-int/facts-off.gif";

	servicesinton = new Image(80, 34);
	servicesinton.src = "/images/core/nav-int/services-on.gif";
	servicesintoff = new Image(80, 34);
	servicesintoff.src = "/images/core/nav-int/services-off.gif";

	incentivesinton = new Image(201, 34);
	incentivesinton.src = "/images/core/nav-int/incentives-on.gif";
	incentivesintoff = new Image(201, 34);
	incentivesintoff.src = "/images/core/nav-int/incentives-off.gif";

	clientsinton = new Image(75, 34);
	clientsinton.src = "/images/core/nav-int/clients-on.gif";
	clientsintoff = new Image(75, 34);
	clientsintoff.src = "/images/core/nav-int/clients-off.gif";

	pressinton = new Image(102, 34);
	pressinton.src = "/images/core/nav-int/pressroom-on.gif";
	pressintoff = new Image(102, 34);
	pressintoff.src = "/images/core/nav-int/pressroom-off.gif";

	contactusinton = new Image(101, 34);
	contactusinton.src = "/images/core/nav-int/contact-on.gif";
	contactusintoff = new Image(101, 34);
	contactusintoff.src = "/images/core/nav-int/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;
		}
	}