if (document.images) {

	health = new Image( ); health.src = "/images/health2.jpg";
	clinicians = new Image( ); clinicians.src = "/images/clinicians2.jpg";
	itprofessionals = new Image( ); itprofessionals.src = "/images/itprofessionals2.jpg";
	offstate = new Image( ); offstate.src = "/images/sidebar_nav_09.jpg";


	health_fr = new Image( ); health_fr.src = "/images/health_executive_09_fr.jpg";
	clinicians_fr = new Image( ); clinicians_fr.src = "/images/clinicians_09_fr.jpg";
	itprofessionals_fr = new Image( ); itprofessionals_fr.src = "/images/IT_professionals_09_fr.jpg";
	offstate_fr = new Image( ); offstate_fr.src = "/images/sidebar_nav_09_fr.jpg";

	health_es = new Image( ); health_es.src = "/images/health_executive_09_es.jpg";
	clinicians_es = new Image( ); clinicians_es.src = "/images/clinicians_09_es.jpg";
	itprofessionals_es = new Image( ); itprofessionals_es.src = "/images/IT_professionals_09_es.jpg";
	offstate_es = new Image( ); offstate_es.src = "/images/sidebar_nav_09_es.jpg";


function imgOn(imgField,file) {
	if (document.images) {
		document[imgField].src = eval(file + ".src");
	}
} // End function

function imgOff(imgField,file) {
	if (document.images) {
		if (file == 'fr') {
			document[imgField].src = eval("offstate_fr.src");
		} else if (file == 'es') {
			document[imgField].src = eval("offstate_es.src");

		} else {
			document[imgField].src = eval("offstate.src");
		}
	}
} // End function


} // End if
