<!--
//rollovers...

if(document.images) {
		principal1 = new Image();
		principal1.src = "images/principal1.png";
		principal2 = new Image();
		principal2.src = "images/principal2.png";
		
		hostal1 = new Image();
		hostal1.src = "images/hostal1.png";
		hostal2 = new Image();
		hostal2.src = "images/hostal2.png";
		
		ubicacion1 = new Image();
		ubicacion1.src = "images/ubicacion1.png";
		ubicacion2 = new Image();
		ubicacion2.src = "images/ubicacion2.png";
		
		priego1 = new Image();
		priego1.src = "images/priego1.png";
		priego2 = new Image();
		priego2.src = "images/priego2.png";
		
		alrededores1 = new Image();
		alrededores1.src = "images/alrededores1.png";
		alrededores2 = new Image();
		alrededores2.src = "images/alrededores2.png";
		
		contactar1 = new Image();
		contactar1.src = "images/contactar1.png";
		contactar2 = new Image();
		contactar2.src = "images/contactar2.png";
		
}

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