<!--
//rollovers...

if(document.images) {
     
		
		iniciooff = new Image();
		iniciooff.src = "images/inicioOFF.gif";
		inicioon = new Image();
		inicioon.src = "images/inicioON.gif";
		
		cocidosoff = new Image();
		cocidosoff.src = "images/cocidosOFF.gif";
		cocidoson = new Image();
		cocidoson.src = "images/cocidosON.gif";

		curadosoff = new Image();
		curadosoff.src = "images/curadosOFF.gif";
		curadoson = new Image();
		curadoson.src = "images/curadosON.gif";
		
		trufadosoff = new Image();
		trufadosoff.src = "images/trufadosOFF.gif";
		trufadoson = new Image();
		trufadoson.src = "images/trufadosON.gif";
		
		lalonganizaoff = new Image();
		lalonganizaoff.src = "images/lalonganizaOFF.gif";
		lalonganizaon = new Image();
		lalonganizaon.src = "images/lalonganizaON.gif";

		contactaroff = new Image();
		contactaroff.src = "images/contactarOFF.gif";
		contactaron = new Image();
		contactaron.src = "images/contactarON.gif";

}

function onoff(imgName,state) {
        if(document.images) {               
		document.images[imgName].src = eval(imgName+state+".src");
        }
}         
//-->