<!--
//rollovers...

if(document.images) {
     
		
		homeoff = new Image();
		homeoff.src = "images/homeoff.gif";
		homeover = new Image();
		homeover.src = "images/homeover.gif";

		diagnosoff = new Image();
		diagnosoff.src = "images/diagnosoff.gif";
		diagnosover = new Image();
		diagnosover.src = "images/diagnosover.gif";

		terapiaoff = new Image();
		terapiaoff.src = "images/terapiaoff.gif";
		terapiaover = new Image();
		terapiaover.src = "images/terapiaover.gif";

		contactsoff = new Image();
		contactsoff.src = "images/contactsoff.gif";
		contactsover = new Image();
		contactsover.src = "images/contactsover.gif";		
}

function onoff(imgName,state) {
        if(document.images) {               
		document.images[imgName].src = eval(imgName+state+".src");
        }
}         
//-->
