<!-- 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] = 'slideshow/1.gif'
theImages[1] = 'slideshow/2.gif'
theImages[2] = 'slideshow/3.gif'
theImages[3] = 'slideshow/4.gif'
theImages[4] = 'slideshow/5.gif'
theImages[5] = 'slideshow/6.gif'
theImages[6] = 'slideshow/7.gif'
theImages[7] = 'slideshow/8.gif'
theImages[8] = 'slideshow/9.gif'
theImages[9] = 'slideshow/10.gif'
theImages[10] = 'slideshow/11.gif'
theImages[11] = 'slideshow/12.gif'
theImages[12] = 'slideshow/12.gif'
theImages[13] = 'slideshow/14.gif'
theImages[14] = 'slideshow/15.gif'
theImages[15] = 'slideshow/16.gif'
theImages[16] = 'slideshow/17.gif'
theImages[17] = 'slideshow/18.gif'
theImages[18] = 'slideshow/19.gif'
theImages[19] = 'slideshow/20.gif'
theImages[20] = 'slideshow/21.gif'
theImages[21] = 'slideshow/22.gif'
theImages[22] = 'slideshow/23.gif'
theImages[23] = 'slideshow/24.gif'
theImages[24] = 'slideshow/25.gif'
theImages[25] = 'slideshow/26.gif'


// 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('<center><img src="'+theImages[whichImage]+'"></center>');
}

//  End -->