<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/fotoPPninios.jpg'
theImages[1] = 'images/fotoGrupo.jpg'
theImages[2] = 'images/fotoJov.jpg'
theImages[3] = 'images/fotoPPBici.jpg'
theImages[4] = 'images/fotoPPBici.jpg'

// do not edit anything below this line

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]+'">');
}


var imaLat = new Array()
imaLat[0] = 'images/fotoPINinia.jpg'
imaLat[1] = 'images/fotoPIFamilia.jpg'
imaLat[2] = 'images/fotoLat01.jpg'
imaLat[3] = 'images/fotoLat02.jpg'
imaLat[4] = 'images/fotoLat03.jpg'
imaLat[5] = 'images/fotoLat04.jpg'
imaLat[6] = 'images/fotoLat05.jpg'
imaLat[7] = 'images/fotoLat06.jpg'
imaLat[8] = 'images/fotoLat07.jpg'
imaLat[9] = 'images/fotoLat08.jpg'
imaLat[10] = 'images/fotoLat09.jpg'
imaLat[11] = 'images/fotoLatNinia.jpg'
imaLat[12] = 'images/fotoLatNinias.jpg'
imaLat[13] = 'images/fotoLat10.jpg'
imaLat[14] = 'images/fotoLat11.jpg'
imaLat[15] = 'images/fotoLat12.jpg'
imaLat[16] = 'images/fotoLat13.jpg'
imaLat[17] = 'images/fotoLat14.jpg'

var g = imaLat.length;
var preCarga = new Array()
for (i = 0; i < g; i++){
   preCarga[i] = new Image()
   preCarga[i].src = imaLat[i]
}
var cual = Math.round(Math.random()*(g-1));
function mostrarImagen(){
document.write('<img src="'+imaLat[cual]+'">');
}

var cual1 = Math.round(Math.random()*(g-1));
function mostrarImagen1(){
document.write('<img src="'+imaLat[cual1]+'">');
}

//  End -->
