
//<!-- This script and many more are available free online at -->
//<!-- The JavaScript Source!! http://javascript.internet.com -->

//<!-- 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] = '00.jpg'
theImages[1] = '01.jpg'
theImages[2] = '02.jpg'
theImages[3] = '03.jpg'
theImages[4] = '04.jpg'
theImages[5] = '05.jpg'
theImages[6] = '06.jpg'
theImages[7] = '07.jpg'
theImages[8] = '08.jpg'
theImages[9] = '09.jpg'
theImages[10] = '10.jpg'
theImages[11] = '11.jpg'
theImages[12] = '12.jpg'
theImages[13] = '13.jpg'
theImages[14] = '14.jpg'
theImages[15] = '15.jpg'
theImages[16] = '16.jpg'
theImages[17] = '17.jpg'
theImages[18] = '18.jpg'
theImages[19] = '19.jpg'
theImages[20] = '20.jpg'
theImages[21] = '21.jpg'
theImages[22] = '22.jpg'
theImages[23] = '23.jpg'
theImages[24] = '24.jpg'
theImages[25] = '25.jpg'
theImages[26] = '26.jpg'
theImages[27] = '27.jpg'
theImages[28] = '28.jpg'
theImages[29] = '29.jpg'
theImages[30] = '30.jpg'
theImages[31] = '31.jpg'
theImages[32] = '32.jpg'
theImages[33] = '33.jpg'
theImages[34] = '34.jpg'
theImages[35] = '35.jpg'
theImages[36] = '36.jpg'
theImages[37] = '37.jpg'
theImages[38] = '38.jpg'
theImages[39] = '39.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="http://www.usq.edu.au/users/evansp/js/'+theImages[whichImage]+'" width="112" height="150" align="right" hspace="5" alt="A pleasing photo">');
}

//  End -->