// ---### Set up for General files ###---





// Set up the image files to be used for General rotator #1

var theImagesGeneral1 = new Array() // do not change this

theImagesGeneral1[0] = 'images/rotator/3.jpg'

theImagesGeneral1[1] = 'images/rotator/4.jpg'

theImagesGeneral1[2] = 'images/rotator/5.jpg'

// do not edit anything below this line

var j = 0

var p = theImagesGeneral1.length;

var preBuffer = new Array()

for (i = 0; i < p; i++){

   preBuffer[i] = new Image()

   preBuffer[i].src = theImagesGeneral1[i]

}

var whichImageGeneral1 = Math.round(Math.random()*(p-1));

function showImageGeneral1(){

document.write('<img src="'+theImagesGeneral1[whichImageGeneral1]+'">');

}