// Set up the image files to be used.
var theImages = new Array() // do not change this
var theAlts = new Array() //do not change this
// To add more image files, continue with the
// pattern below, adding to the arrays.
// theAlts is an array that holds the ALT text
// accompanying the images
// NOTE: when putting in text for theAlts, double
// quotes and single quotes/apostrophes are special characters
// and must be treated differently.  In place of a double quote
// character you must put &quot;  In place of a single quote/apostrophe
// you must put \'  Without these substitutions, the javascript may not
// function properly.

var imagepath = 'images/rotation/';

theImages[0] = imagepath + 't_arnaud_leclezio.jpg'
theAlts[0] = 'Arnaud Leclezio'

theImages[1] = imagepath + 't_cesar_rodriguez.jpg'
theAlts[1] = 'Cesar Rodriguez'

theImages[2] = imagepath + 't_chuckie_best.jpg'
theAlts[2] = 'Chuckie Best'

theImages[3] = imagepath + 't_buck_willmes.jpg'
theAlts[3] = 'Buck Willmes'

theImages[4] = imagepath + 't_abdul_karim_al-sarkhi.jpg'
theAlts[4] = 'Abdul Karim Al-Sarkhi'

theImages[5] = imagepath + 't_pitchford.jpg'
theAlts[5] = 'Lester Pitchford'

theImages[6] = imagepath + 't_webber.jpg'
theAlts[6] = 'Owen Chivell and Andrew Chivell'

theImages[7] = imagepath + 't_armstrong.jpg'
theAlts[7] = 'Phil Armstrong'

theImages[8] = imagepath + 't_pate.jpg'
theAlts[8] = 'Scott Pate'




// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()

var whichImage = Math.round(Math.random()*(p-1));

preBuffer = new Image();
preBuffer.src = theImages[whichImage];

function showImage(){
document.write('<img width="176" height="243" border="0" src="'+theImages[whichImage]+'" alt="' + theAlts[whichImage] + '">');
}

