ini = new Image(); ini.src = "img/"+"home.jpg"
ini_on = new Image(); ini_on.src = "img/"+"home_on.jpg"

alo = new Image(); alo.src = "img/"+"rooms.jpg"
alo_on = new Image(); alo_on.src = "img/"+"rooms_on.jpg"

pre = new Image(); pre.src = "img/"+"prices.jpg"
pre_on = new Image(); pre_on.src = "img/"+"prices_on.jpg"

ali = new Image(); ali.src = "img/"+"food.jpg"
ali_on = new Image(); ali_on.src = "img/"+"food_on.jpg"


act = new Image(); act.src = "img/"+"acti.jpg"
act_on = new Image(); act_on.src = "img/"+"acti_on.jpg"

conf = new Image(); conf.src = "img/"+"parties.jpg"
conf_on = new Image(); conf_on.src = "img/"+"parties_on.jpg"

gal = new Image(); gal.src = "img/"+"photo.jpg"
gal_on = new Image(); gal_on.src = "img/"+"photo_on.jpg"

acer = new Image(); acer.src = "img/"+"about.jpg"
acer_on = new Image(); acer_on.src = "img/"+"about_on.jpg"

function turn_off(ImageName) {
	if (document.images != null) {
		document[ImageName].src = eval(ImageName + ".src");
	}
}

function turn_on(ImageName) {
	if (document.images != null) {
	  document[ImageName].src = eval(ImageName + "_on.src");
	}
}

function RestoreStatus(){
  window.status="";
  return true;
}

function BarraEstado(mensaje) {
  window.status=mensaje;
  return true;
}