// JavaScript Document
<!--
	if (document.images) 
	{
	navHOMEon = new Image();
	navHOMEon.src = "images/header_link_home_over.gif";
	navHOMEoff = new Image();
	navHOMEoff.src = "images/header_link_home.gif";
	}
	{
	navINFOon = new Image();
	navINFOon.src = "images/header_link_info_over.gif";
	navINFOoff = new Image();
	navINFOoff.src = "images/header_link_info.gif";
	}
	{
	navPRODon = new Image();
	navPRODon.src = "images/header_link_products_over.gif";
	navPRODoff = new Image();
	navPRODoff.src = "images/header_link_products.gif";
	}
	{
	navPRICINGon = new Image();
	navPRICINGon.src = "images/header_link_pricing_over.gif";
	navPRICINGoff = new Image();
	navPRICINGoff.src = "images/header_link_pricing.gif";
	}
	{
	navLOCATIONSon = new Image();
	navLOCATIONSon.src = "images/header_link_locations_over.gif";
	navLOCATIONSoff = new Image();
	navLOCATIONSoff.src = "images/header_link_locations.gif";
	}
	{
	navPHOTOSon = new Image();
	navPHOTOSon.src = "images/header_link_photos_over.gif";
	navPHOTOSoff = new Image();
	navPHOTOSoff.src = "images/header_link_photos.gif";
	}
	{
	footHBAon = new Image();
	footHBAon.src = "images/logos/hba_footer_color.gif";
	footHBAoff = new Image();
	footHBAoff.src = "images/logos/hba_footer_bw.gif";
	}
	{
	footEALon = new Image();
	footEALon.src = "images/logos/eal_footer_color.gif";
	footEALoff = new Image();
	footEALoff.src = "images/logos/eal_footer_bw.gif";
	}
	{
	footTLCon = new Image();
	footTLCon.src = "images/logos/tlc_footer_color.gif";
	footTLCoff = new Image();
	footTLCoff.src = "images/logos/tlc_footer_bw.gif";
	}
	
	function imgOn(imgName)
	{
	if (document.images) 
		{
		document[imgName].src = eval(imgName + "on.src");
		}
	}

	function imgOff(imgName)
	{
	if (document.images) 
		{
		document[imgName].src = eval(imgName + "off.src");
		}
	}

//-->
