<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- 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] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-1.jpg'
theImages[1] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-2.jpg'
theImages[2] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-3.jpg'
theImages[3] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-4.jpg'
theImages[4] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-5.jpg'
theImages[5] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-6.jpg'
theImages[6] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-7.jpg'
theImages[7] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-8.jpg'
theImages[8] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-9.jpg'
theImages[9] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-10.jpg'
theImages[10] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-11.jpg'
theImages[11] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-12.jpg'
theImages[12] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-13.jpg'
theImages[13] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-14.jpg'
theImages[14] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-15.jpg'
theImages[15] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-16.jpg'
theImages[16] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-17.jpg'
theImages[17] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-18.jpg'
theImages[18] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-19.jpg'
theImages[19] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-20.jpg'
theImages[20] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-21.jpg'
theImages[21] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-22.jpg'
theImages[22] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-23.jpg'
theImages[23] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-24.jpg'
theImages[24] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-25.jpg'
theImages[25] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-26.jpg'
theImages[26] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-27.jpg'
theImages[27] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-28.jpg'
theImages[28] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-29.jpg'
theImages[29] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-30.jpg'
theImages[30] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-31.jpg'
theImages[31] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-32.jpg'
theImages[32] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-33.jpg'
theImages[33] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-34.jpg'
theImages[34] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-35.jpg'
theImages[35] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-36.jpg'
theImages[36] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-37.jpg'
theImages[37] = 'http://store02.prostores.com/thetasteoftea/images/2010pro/card-38.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));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//  End -->

