function showImage()
{
// Set up the image files to be used.
var theImages = new Array() // do not change this
var imageLink = new Array()
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'http://www.fruitfromwashington.com/storeimages/rotating/ffw148x121-7.gif'
theImages[1] = 'http://www.fruitfromwashington.com/storeimages/rotating/ffw148x121-2.gif'
theImages[2] = 'http://www.fruitfromwashington.com/storeimages/rotating/ffw148x121-9.gif'

imageLink[0] = 'http://www.fruitfromwashington.com/Recipes/heirloom_classics.htm'
imageLink[1] = 'http://www.vanderbiltcountryestates.com/'
imageLink[2] = 'http://www.fruitfromwashington.com/Varieties/art/gallery.htm'
// 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));

document.write('<a href="' + imageLink[whichImage] + '"><img src="'+theImages[whichImage]+'" border="0"></a>');
}