
// 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] = 'images/green/IMG_2685.jpg'
theImages[1] = 'images/green/IMG_2686.jpg'
theImages[2] = 'images/green/IMG_2687.jpg'
theImages[3] = 'images/green/IMG_2688.jpg'
theImages[4] = 'images/green/IMG_2689.jpg'
theImages[5] = 'images/green/IMG_2690.jpg'
theImages[6] = 'images/green/IMG_2691.jpg'
theImages[7] = 'images/green/IMG_2692.jpg'
theImages[8] = 'images/green/IMG_2693.jpg'
theImages[9] = 'images/green/IMG_2694.jpg'
theImages[10] = 'images/green/IMG_2695.jpg'
theImages[11] = 'images/green/IMG_2696.jpg'
theImages[12] = 'images/green/IMG_2697.jpg'
theImages[13] = 'images/green/IMG_2698.jpg'
theImages[14] = 'images/green/IMG_2699.jpg'
theImages[15] = 'images/green/IMG_2700.jpg'
theImages[16] = 'images/green/IMG_2701.jpg'
theImages[17] = 'images/green/IMG_2702.jpg'
theImages[18] = 'images/green/IMG_2703.jpg'
theImages[19] = 'images/green/IMG_2704.jpg'
theImages[20] = 'images/green/IMG_2705.jpg'
theImages[21] = 'images/green/IMG_2706.jpg'
theImages[22] = 'images/green/IMG_2707.jpg'
theImages[23] = 'images/green/IMG_2708.jpg'
theImages[24] = 'images/green/IMG_2709.jpg'
theImages[25] = 'images/green/IMG_2710.jpg'
theImages[26] = 'images/green/IMG_2711.jpg'
theImages[27] = 'images/green/IMG_2712.jpg'
theImages[28] = 'images/green/IMG_2713.jpg'
theImages[29] = 'images/green/IMG_2714.jpg'
theImages[30] = 'images/green/IMG_2715.jpg'
theImages[31] = 'images/green/IMG_2716.jpg'
theImages[32] = 'images/green/IMG_2717.jpg'
theImages[33] = 'images/green/IMG_2718.jpg'
theImages[34] = 'images/green/IMG_2719.jpg'
theImages[35] = 'images/green/IMG_2720.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));
var whichImage2 = Math.round(Math.random()*(p-1));
var whichImage3 = Math.round(Math.random()*(p-1));
var whichImage4 = Math.round(Math.random()*(p-1));
var whichImage5 = Math.round(Math.random()*(p-1));
var whichImage6 = Math.round(Math.random()*(p-1));
var whichImage7 = Math.round(Math.random()*(p-1));
var whichImage8 = Math.round(Math.random()*(p-1));
var whichImage9 = Math.round(Math.random()*(p-1));
var whichImage10 = Math.round(Math.random()*(p-1));
var whichImage11 = Math.round(Math.random()*(p-1));
var whichImage12 = Math.round(Math.random()*(p-1));
var whichImage13 = Math.round(Math.random()*(p-1));

function showImage(){
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage]+'">&nbsp;');
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage2]+'">&nbsp;');
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage3]+'">&nbsp;');
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage4]+'">&nbsp;');
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage5]+'">&nbsp;');
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage6]+'">&nbsp;');
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage7]+'">&nbsp;');
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage8]+'">&nbsp;');
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage9]+'">&nbsp;');
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage10]+'">&nbsp;');
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage11]+'">&nbsp;');
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage12]+'">&nbsp;');
   document.write('<img style="width:60px; height:60px;" src="'+theImages[whichImage13]+'">&nbsp;');
}


