<!-- 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/capa_rando_01.jpg'
theImages_sop[1] = 'imagens/capa_rando_02.jpg'
theImages_sop[2] = 'imagens/capa_rando_03.jpg'
theImages_sop[3] = 'imagens/capa_rando_04.jpg'
theImages_sop[4] = 'imagens/capa_rando_05.jpg'

// 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 -->