<!--
if (document.images) {
	hpimage1on = new Image();
	hpimage1on.src = "images/contact_on.gif";

	hpimage2on = new Image();
	hpimage2on.src = "images/patient_on.gif";

	hpimage3on = new Image();
	hpimage3on.src = "images/services_on.gif";

	hpimage4on = new Image();
	hpimage4on.src = "images/about_on.gif";

	hpimage5on = new Image();
	hpimage5on.src = "images/home_on.gif";
	
		
	//TURN OFF
	
	hpimage1off = new Image();
	hpimage1off.src = "images/contact.gif";

	hpimage2off = new Image();
	hpimage2off.src = "images/patient.gif";

	hpimage3off = new Image();
	hpimage3off.src = "images/services.gif";

	hpimage4off = new Image();
	hpimage4off.src = "images/about.gif";

	hpimage5off = new Image();
	hpimage5off.src = "images/home.gif";

	
		
}

function turnOn(imageName) {
	if (document.images) {
		document[imageName].src = eval(imageName + "on.src");
	}
}

function turnOff(imageName) {
	if (document.images) {
		document[imageName].src = eval(imageName + "off.src");
	}
}
// -->
