//<!--
//These are the rollovers all navigation elements
if (document.images) {            // Active Images
	about_on = new Image(); 
	about_on.src = "images/home_nav/home_aboutnav_alt.gif";
	contact_on = new Image(); 
	contact_on.src = "images/home_nav/home_contactnav_alt.gif";
	home_on = new Image(); 
	home_on.src = "images/home_nav/home_homepagenav_alt.gif";
	suppliers_on = new Image(); 
	suppliers_on.src = "images/home_nav/home_suppliersnav_alt.gif";
	contest_on = new Image(); 
	contest_on.src = "images/home_nav/home_contestnav_alt.gif";
	gallery_on = new Image(); 
	gallery_on.src = "images/home_nav/home_gallerynav_alt.gif";

	
	about_off = new Image(); 
	about_off.src = "images/home_nav/home_aboutnav.gif";
	contact_off = new Image(); 
	contact_off.src = "images/home_nav/home_contactnav.gif";
	home_off = new Image(); 
	home_off.src = "images/home_nav/home_homepagenav.gif";
	suppliers_off = new Image(); 
	suppliers_off.src = "images/home_nav/home_suppliersnav.gif";
	contest_off = new Image(); 
	contest_off.src = "images/home_nav/home_contestnav.gif";
	gallery_off = new Image(); 
	gallery_off.src = "images/home_nav/home_gallerynav.gif";}

// 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");
		}
	}
//-->
