<!--
//rollovers...

if(document.images) {
		iniciooff = new Image();
		iniciooff.src = "images/inicioOFF.jpg";
		inicioon = new Image();
		inicioon.src = "images/inicioON.jpg";
		
		reservasoff = new Image();
		reservasoff.src = "images/reservasOFF.jpg";
		reservason = new Image();
		reservason.src = "images/reservasON.jpg";
		
		fotooff = new Image();
		fotooff.src = "images/fotoOFF.jpg";
		fotoon = new Image();
		fotoon.src = "images/fotoON.jpg";
		
		preciosoff = new Image();
		preciosoff.src = "images/preciosOFF.jpg";
		precioson = new Image();
		precioson.src = "images/preciosON.jpg";
		
		noticiasoff = new Image();
		noticiasoff.src = "images/noticiasOFF.jpg";
		noticiason = new Image();
		noticiason.src = "images/noticiasON.jpg";
		
		tiempooff = new Image();
		tiempooff.src = "images/tiempoOFF.jpg";
		tiempoon = new Image();
		tiempoon.src = "images/tiempoON.jpg";
		
		contactooff = new Image();
		contactooff.src = "images/contactoOFF.jpg";
		contactoon = new Image();
		contactoon.src = "images/contactoON.jpg";

}

function onoff(imgName,state) {
        if(document.images) {               
		document.images[imgName].src = eval(imgName+state+".src");
        }
}         


//-->