<!--

	nav_healthplans_off = new Image();
	nav_healthplans_off.src = "../images/nav_healthplans_off.gif";
	nav_healthplans_on = new Image();
	nav_healthplans_on.src = "../images/nav_healthplans_on.gif";

	nav_providers_off = new Image();
	nav_providers_off.src = "../images/nav_providers_off.gif";
	nav_providers_on = new Image();
	nav_providers_on.src = "../images/nav_providers_on.gif";

	nav_consumers_off = new Image();
	nav_consumers_off.src = "../images/nav_consumers_off.gif";
	nav_consumers_on = new Image();
	nav_consumers_on.src = "../images/nav_consumers_on.gif";


	function imageon(imagename) {
		imgOn = eval(imagename + "_on.src");
		document[imagename].src = imgOn;
	}

	function imageoff(imagename) {
		imgOff = eval(imagename + "_off.src");
		document[imagename].src = imgOff;
	}

//-->