<!-- 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] = 'images/VITRINE_01.jpg';
theImages_sop[1] = 'images/VITRINE_02.jpg';
theImages_sop[2] = 'images/VITRINE_03.jpg';
theImages_sop[3] = 'images/VITRINE_04.jpg';
theImages_sop[4] = 'images/VITRINE_05.jpg';
theImages_sop[5] = 'images/VITRINE_06.jpg';
theImages_sop[6] = 'images/VITRINE_07.jpg';
theImages_sop[7] = 'images/VITRINE_08.jpg';
theImages_sop[8] = 'images/VITRINE_09.jpg';
theImages_sop[9] = 'images/VITRINE_10.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 -->