var current = "Inicio"
function Currente(nombre) {
  if (top.frames[0].document.images){ 
     top.frames[0].document.images[top.frames[0].current].src = "Imagenes/" + top.frames[0].current + ".jpg";
     top.frames[0].document.images[nombre].src = "Imagenes/" + nombre + "2.jpg"; 
     top.frames[0].current = nombre; 
  }
}

function Sobre(nombre) {
  if (top.frames[0].document.images)
   { 
    if (nombre != current){
    top.frames[0].document.images[nombre].src = "Imagenes/" + nombre + "3.jpg";}
   }
}

function Sale(nombre) {
  if (document.images) 
   { 
      if (nombre != current){
          top.frames[0].document.images[nombre].src = "Imagenes/" + nombre + ".jpg";
          Currente(current);
      }
   }
}

function preloadimages(imagesstring){
 var imagesarray;
 var count;
 imagesarray=imagesstring.split(",");
 for(count=0;count<imagesarray.length;count++){
  newimage=new Image();
  newimage.src=imagesarray[count];
 }
} 

