

var theImages = new Array()

theImages[0] = 'scrapbookImages/01.gif'
theImages[1] = 'scrapbookImages/02.gif'
theImages[2] = 'scrapbookImages/03.gif'
theImages[3] = 'scrapbookImages/04.gif'
theImages[4] = 'scrapbookImages/05.gif'
theImages[5] = 'scrapbookImages/06.gif'
theImages[6] = 'scrapbookImages/07.gif'
theImages[7] = 'scrapbookImages/08.gif'
theImages[8] = 'scrapbookImages/09.gif'
theImages[9] = 'scrapbookImages/10.gif'
theImages[10] = 'scrapbookImages/11.gif'
theImages[11] = 'scrapbookImages/12.gif'
theImages[12] = 'scrapbookImages/13.gif'
theImages[13] = 'scrapbookImages/14.gif'
theImages[14] = 'scrapbookImages/15.gif'
theImages[15] = 'scrapbookImages/16.gif'
theImages[16] = 'scrapbookImages/17.gif'
theImages[17] = 'scrapbookImages/18.gif'
theImages[18] = 'scrapbookImages/19.gif'
theImages[19] = 'scrapbookImages/20.gif'
theImages[20] = 'scrapbookImages/21.gif'
theImages[21] = 'scrapbookImages/22.gif'
theImages[22] = 'scrapbookImages/23.gif'
theImages[23] = 'scrapbookImages/24.gif'
theImages[24] = 'scrapbookImages/25.gif'
theImages[25] = 'scrapbookImages/26.gif'
theImages[26] = 'scrapbookImages/27.gif'
theImages[27] = 'scrapbookImages/28.gif'
theImages[28] = 'scrapbookImages/29.gif'
theImages[29] = 'scrapbookImages/30.gif'
theImages[30] = 'scrapbookImages/31.gif'
theImages[31] = 'scrapbookImages/32.gif'
theImages[32] = 'scrapbookImages/33.gif'
theImages[33] = 'scrapbookImages/34.gif'
theImages[34] = 'scrapbookImages/35.gif'
theImages[35] = 'scrapbookImages/36.gif'
theImages[36] = 'scrapbookImages/37.gif'
theImages[37] = 'scrapbookImages/38.gif'
theImages[38] = 'scrapbookImages/39.gif'
theImages[39] = 'scrapbookImages/40.gif'
theImages[40] = 'scrapbookImages/41.gif'
theImages[41] = 'scrapbookImages/42.gif'
theImages[42] = 'scrapbookImages/43.gif'
theImages[43] = 'scrapbookImages/44.gif'
theImages[44] = 'scrapbookImages/45.gif'
theImages[45] = 'scrapbookImages/46.gif'
theImages[46] = 'scrapbookImages/47.gif'
theImages[47] = 'scrapbookImages/48.gif'
theImages[48] = 'scrapbookImages/49.gif'
theImages[49] = 'scrapbookImages/50.gif'
theImages[50] = 'scrapbookImages/51.gif'
theImages[51] = 'scrapbookImages/52.gif'

// 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]+'">');
}


