<!-- Start
// Set up the image files to be used.
var theImages_sop = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages_sop[0] = 'imagens/foto1_1.png'
theImages_sop[1] = 'imagens/foto2_1.png'
theImages_sop[2] = 'imagens/foto3_1.png'
theImages_sop[3] = 'imagens/foto5_1.png'
theImages_sop[4] = 'imagens/foto6_1.png'
theImages_sop[5] = 'imagens/foto7_1.png'
theImages_sop[6] = 'imagens/foto8_1.png'


// do not edit anything below this line

var j = 0
var p = theImages_sop.length;
var preBuffer_sop = new Array()
for (i = 0; i < p; i++){
   preBuffer_sop[i] = new Image()
   preBuffer_sop[i].src = theImages_sop[i]
}
var whichImage_sop = Math.round(Math.random()*(p-1));
function showImage_sop(){
document.write('<img src="'+theImages_sop[whichImage_sop]+'">');
}

//  End -->