  stored=null;
  storedLocation=null;

  im1=load("_img/pt/cenador.gif");
  im2=load("_img/pt/exterior.gif");
  im3=load("_img/pt/restaurante.gif");
  
  function load(location){
    image=new Image();
    image.src=location;
    return image;
  }
  function show(where,what){
    stored=where;
    storedLocation=document.images[where].src;
    document.images[where].src=eval(what+".src");
  }
  function hide(){
    document.images[stored].src=storedLocation;
  }
