<!-- BEGIN page images for TOPNAV-->
	fuels_on = new Image();
	fuels_on.src = vroot + "images/fuels_on.gif";
	fuels_off = new Image();
	fuels_off.src = vroot + "images/fuels_off.gif";

	lubricants_on = new Image();
	lubricants_on.src = vroot + "images/lubricants_on.gif";
	lubricants_off = new Image();
	lubricants_off.src = vroot + "images/lubricants_off.gif";
		
	coolants_on = new Image();
	coolants_on.src = vroot + "images/coolants_on.gif";
	coolants_off = new Image();
	coolants_off.src = vroot + "images/coolants_off.gif";
	
	hes_on = new Image();
	hes_on.src = vroot + "images/hes_on.gif";
	hes_off = new Image();
	hes_off.src = vroot + "images/hes_off.gif";

	risk_on = new Image();
	risk_on.src = vroot + "images/risk_on.gif";
	risk_off = new Image();
	risk_off.src = vroot + "images/risk_off.gif";

	msds_on = new Image();
	msds_on.src = vroot + "images/msds_on.gif";
	msds_off = new Image();
	msds_off.src = vroot + "images/msds_off.gif";

	contactus_on = new Image();
	contactus_on.src = vroot + "images/contactus_on.gif";
	contactus_off = new Image();
	contactus_off.src = vroot + "images/contactus_off.gif";
	
	aboutus_on = new Image();
	aboutus_on.src = vroot + "images/aboutus_on.gif";
	aboutus_off = new Image();
	aboutus_off.src = vroot + "images/aboutus_off.gif";

<!-- END page images for TOPNAV-->

<!-- BEGIN page images for GRAYNAV-->

	hdr_home_on = new Image();
	hdr_home_on.src = vroot + "images/hdr_home_on.gif";
	hdr_home_off = new Image();
	hdr_home_off.src = vroot + "images/hdr_home_off.gif";

	hdr_contact_us_on = new Image();
	hdr_contact_us_on.src = vroot + "images/hdr_contact_us_on.gif";
	hdr_contact_us_off = new Image();
	hdr_contact_us_off.src = vroot + "images/hdr_contact_us_off.gif";

	hdr_site_index_on = new Image();
	hdr_site_index_on.src = vroot + "images/hdr_site_index_on.gif";
	hdr_site_index_off = new Image();
	hdr_site_index_off.src = vroot + "images/hdr_site_index_off.gif";
<!-- END page images for GRAYNAV-->
			
function imgOn(imgName) {
	document[imgName].src = eval(imgName + "_on.src");
}

function imgOff(imgName) {
	document[imgName].src = eval(imgName + "_off.src");
}