
<!-- 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] = 'images/flowers/azalea.jpg'
theImages[1] = 'images/flowers/camelia.jpg'
theImages[2] = 'images/flowers/crocus.jpg'
theImages[3] = 'images/flowers/crocus2.jpg'
theImages[4] = 'images/flowers/daffodil.jpg'
theImages[5] = 'images/flowers/daffodil2.jpg'
theImages[6] = 'images/flowers/daffodil3.jpg'
theImages[7] = 'images/flowers/daylily.jpg'
theImages[8] = 'images/flowers/dicentra.jpg'
theImages[9] = 'images/flowers/hellebore.jpg'
theImages[10] = 'images/flowers/hellebore2.jpg'
theImages[11] = 'images/flowers/hyacinth.jpg'
theImages[12] = 'images/flowers/lacecap.jpg'
theImages[13] = 'images/flowers/lilyofvalley.jpg'
theImages[14] = 'images/flowers/millionbells.jpg'
theImages[15] = 'images/flowers/pansy.jpg'
theImages[16] = 'images/flowers/pink.jpg'
theImages[17] = 'images/flowers/pink2.jpg'
theImages[18] = 'images/flowers/tulip.jpg'
theImages[19] = 'images/flowers/violet.jpg'
theImages[20] = 'images/flowers/violet2.jpg'
theImages[21] = 'images/flowers/violet3.jpg'
theImages[22] = 'images/flowers/white.jpg'
theImages[23] = 'images/flowers/apple.jpg'
theImages[24] = 'images/flowers/azalea2.jpg'
theImages[25] = 'images/flowers/azaleacoral.jpg'
theImages[26] = 'images/flowers/camelia2.jpg'
theImages[27] = 'images/flowers/daffodil4.jpg'
theImages[28] = 'images/flowers/dogwood.jpg'
theImages[29] = 'images/flowers/green.jpg'
theImages[30] = 'images/flowers/pink3.jpg'
theImages[31] = 'images/flowers/pink4.jpg'
theImages[32] = 'images/flowers/rhodie.jpg'
theImages[33] = 'images/flowers/rhodiered.jpg'
theImages[34] = 'images/flowers/stripey.jpg'
theImages[35] = 'images/flowers/tulip2.jpg'
theImages[36] = 'images/flowers/tulip3.jpg'
theImages[37] = 'images/flowers/tulip4.jpg'
theImages[38] = 'images/flowers/tulip5.jpg'
theImages[39] = 'images/flowers/vinca.jpg'
theImages[40] = 'images/flowers/white2.jpg'
theImages[41] = 'images/flowers/yellowrose.jpg'


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 class="flower" border="0" src="'+theImages[whichImage]+'">');
}

//  End -->