<!-- 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/logos/01.jpg'
theImages[1] = '../images/logos/02.jpg'
theImages[2] = '../images/logos/03.jpg'
theImages[3] = '../images/logos/04.jpg'
theImages[4] = '../images/logos/05.jpg'
theImages[5] = '../images/logos/06.jpg'
theImages[6] = '../images/logos/07.jpg'
theImages[7] = '../images/logos/08.jpg'
theImages[8] = '../images/logos/09.jpg'
theImages[9] = '../images/logos/10.jpg'
theImages[10] = '../images/logos/11.jpg'
theImages[11] = '../images/logos/12.jpg'
theImages[12] = '../images/logos/13.jpg'
theImages[13] = '../images/logos/14.jpg'
theImages[14] = '../images/logos/15.jpg'
theImages[15] = '../images/logos/16.jpg'
theImages[16] = '../images/logos/17.jpg'
theImages[17] = '../images/logos/18.jpg'
theImages[18] = '../images/logos/19.jpg'
theImages[19] = '../images/logos/20.jpg'
theImages[20] = '../images/logos/21.jpg'
theImages[21] = '../images/logos/22.jpg'
theImages[22] = '../images/logos/23.jpg'
theImages[23] = '../images/logos/24.jpg'
theImages[24] = '../images/logos/25.jpg'
theImages[25] = '../images/logos/26.jpg'
theImages[26] = '../images/logos/27.jpg'
theImages[27] = '../images/logos/28.jpg'
theImages[28] = '../images/logos/29.jpg'
theImages[29] = '../images/logos/30.jpg'
theImages[30] = '../images/logos/31.jpg'
theImages[31] = '../images/logos/32.jpg'
theImages[32] = '../images/logos/33.jpg'
theImages[33] = '../images/logos/34.jpg'
theImages[34] = '../images/logos/35.jpg'
theImages[35] = '../images/logos/36.jpg'
theImages[36] = '../images/logos/37.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]+'">');
}

//  End -->