<!--

var current = 'mail'
if (document.images)
{       // Active Images

		flouron = new Image();
		flouron.src = "images/nav/nav_flour_on.gif";

		flouroff = new Image();
		flouroff.src = "images/nav/nav_flour.gif";

		exporton = new Image();
		exporton.src = "images/nav/nav_export_on.gif";

		exportoff = new Image();
		exportoff.src = "images/nav/nav_export.gif";

		contacton = new Image();
		contacton.src = "images/nav/nav_contact_on.gif";

		contactoff = new Image();
		contactoff.src = "images/nav/nav_contact.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"); }
		}

// -->

