// Comienza random images WebMaster Luis Cárdenas www.sudhosting.com -- 
// Preparar los archivos de imagen que serán usados
var theImages = new Array() // no cambiar esto
// Para agregar más imagenes, continuar con el 
// formato, agregando al array.
theImages[0] = 'img_azar/iguazu01.jpg'
theImages[1] = 'img_azar/iguazu02.jpg'
theImages[2] = 'img_azar/iguazu03.jpg'
theImages[3] = 'img_azar/iguazu04.jpg'
theImages[4] = 'img_azar/iguazu05.jpg'
theImages[5] = 'img_azar/iguazu06.jpg'
theImages[6] = 'img_azar/iguazu07.jpg'
theImages[7] = 'img_azar/iguazu08.jpg'
// no editar debajo de esta linea
var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'"alt="iguazu">');
}


