<!-- 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] = 'smallpic01.jpg'
theImages[1] = 'smallpic02.jpg'
theImages[2] = 'smallpic03.jpg'
theImages[3] = 'smallpic04.jpg'
theImages[4] = 'smallpic05.jpg'
theImages[5] = 'smallpic06.jpg'
theImages[6] = 'smallpic07.jpg'
theImages[7] = 'smallpic08.jpg'
theImages[8] = 'smallpic09.jpg'
theImages[9] = 'smallpic10.jpg'
theImages[10] = 'smallpic11.jpg'
theImages[11] = 'smallpic12.jpg'
theImages[12] = 'smallpic13.jpg'
theImages[13] = 'smallpic14.jpg'
theImages[14] = 'smallpic15.jpg'
theImages[15] = 'smallpic16.jpg'
theImages[16] = 'smallpic17.jpg'
theImages[17] = 'smallpic18.jpg'
theImages[18] = 'smallpic19.jpg'
theImages[19] = 'smallpic20.jpg'
theImages[20] = 'smallpic21.jpg'
theImages[21] = 'smallpic22.jpg'
theImages[22] = 'smallpic23.jpg'
theImages[23] = 'smallpic24.jpg'
theImages[24] = 'smallpic25.jpg'
theImages[25] = 'smallpic26.jpg'
theImages[26] = 'smallpic27.jpg'
theImages[27] = 'smallpic28.jpg'
theImages[28] = 'smallpic29.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=images/small/'+theImages[whichImage]+' alt = "Visit our gallery" border="0">');
}

//  End -->

