// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================


var theImagesa = new Array() 
theImagesa[0] = 'images/bananas.gif'
theImagesa[1] = 'images/blueberries.gif'
theImagesa[2] = 'images/bread.gif'
theImagesa[3] = 'images/broccoli.gif'
theImagesa[4] = 'images/cereal.gif'
theImagesa[5] = 'images/grapes.gif'
theImagesa[6] = 'images/leafy.gif'
theImagesa[7] = 'images/melon.gif'
theImagesa[8] = 'images/milk.gif'
theImagesa[9] = 'images/oranges.gif'
theImagesa[10] = 'images/radishes.gif'
theImagesa[11] = 'images/soybeans.gif'
theImagesa[12] = 'images/watermelon.gif'
theImagesa[13] = 'images/yams.gif'


var j = 0
var p = theImagesa.length;

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

var whichImage = Math.round(Math.random()*(p-1));
function showImagea(){
document.write('<img src="'+theImagesa[whichImage]+'">');
}
