// JavaScript Document
var theImages = new Array() // do not change this

// To add more image files, continue with the

// pattern below, adding to the array.

 

theImages[0] = 'img/backs/1.jpg'

theImages[1] = 'img/backs/2.jpg'

theImages[2] = 'img/backs/3.jpg'

theImages[3] = 'img/backs/4.jpg'

theImages[4] = 'img/backs/5.jpg'

theImages[5] = 'img/backs/6.jpg'

theImages[6] = 'img/backs/7.jpg'

theImages[7] = 'img/backs/8.jpg'

theImages[8] = 'img/backs/9.jpg'

theImages[9] = 'img/backs/10.jpg'

theImages[10] = 'img/backs/11.jpg'

theImages[11] = 'img/backs/12.jpg'

theImages[12] = 'img/backs/13.jpg'

theImages[13] = 'img/backs/14.jpg'

theImages[14] = 'img/backs/15.jpg'

theImages[15] = 'img/backs/16.jpg'

theImages[16] = 'img/backs/17.jpg'

theImages[17] = 'img/backs/18.jpg'

theImages[18] = 'img/backs/19.jpg'

theImages[19] = 'img/backs/20.jpg'

theImages[20] = 'img/backs/21.jpg'

theImages[21] = 'img/backs/22.jpg'

theImages[22] = 'img/backs/23.jpg'

theImages[23] = 'img/backs/24.jpg'

theImages[24] = 'img/backs/25.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]+'" width="100%" height="100%" hspace="0" vspace="0">');

}

