/* Begin random photo changer for homepage */
var photos = new Array(); 

/* To add more photos to collection, continue list below, keeping format. One line per photo is 
all that is rquired. Make sure photo is in the right directory (photos/xyz.jpg), and that dimensions of photo are
width 528 and height 492 pixels.
example: photos[4] = 'photos/photo5.jpg'
*/

photos[0] = 'images/photos/frontPhoto01.jpg';
photos[1] = 'images/photos/frontPhoto06.jpg';
photos[2] = 'images/photos/frontPhoto03.jpg';
photos[3] = 'images/photos/frontPhoto04.jpg';
//photos[4] = 'images/photos/frontPhoto05.jpg';
//photos[5] = 'images/photos/frontPhoto06.jpg';
//photos[6] = 'images/photos/frontPhoto07.jpg';
//photos[7] = 'images/photos/frontPhoto08.jpg';
//photos[8] = 'images/photos/frontPhoto09.jpg';
//photos[9] = 'images/photos/frontPhoto10.jpg';

// DO NOT EDIT ANY FURTHER!

var p = photos.length;
var preloadBuffer = new Array();
for (i = 0; i < p; i++){
	preloadBuffer[i] = new Image();
	preloadBuffer[i].src = photos[i];
	}

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

function showImage(){
	document.write('<img src="'+photos[whichImage]+'" width="528" height="492" border="0">');
	}

/* End random photograph changer */