
<!--


// Set up the image files to be used.
var theImages = new Array()
var theImagesAlt = new Array()// do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = 'images/rotate/1.jpg'
theImages[1] = 'images/rotate/2.jpg'
theImages[2] = 'images/rotate/3.jpg'
theImages[3] = 'images/rotate/4.jpg'
theImages[4] = 'images/rotate/5.jpg'
theImages[5] = 'images/rotate/6.jpg'
theImages[6] = 'images/rotate/7.jpg'
theImages[7] = 'images/rotate/8.jpg'
theImages[8] = 'images/rotate/9.jpg'
theImages[9] = 'images/rotate/10.jpg'
theImages[10] = 'images/rotate/11.jpg'
theImages[11] = 'images/rotate/12.jpg'
theImages[12] = 'images/rotate/13.jpg'
theImages[13] = 'images/rotate/14.jpg'
theImages[14] = 'images/rotate/15.jpg'


theImagesAlt[0] = 'Sailfishing'
theImagesAlt[1] = 'Dolphin'
theImagesAlt[2] = 'Kingfish'
theImagesAlt[3] = 'Tuna'
theImagesAlt[4] = 'Triggerfish'
theImagesAlt[5] = 'Stuart Florida'
theImagesAlt[6] = 'Stuart FL'
theImagesAlt[7] = 'Sportfishing'
theImagesAlt[8] = 'Charterfishing'
theImagesAlt[9] = 'Deap sea fishing'
theImagesAlt[10] = 'Charter boats'
theImagesAlt[11] = 'Bluefish'
theImagesAlt[12] = 'Fishing'
theImagesAlt[13] = 'Vacation'
theImagesAlt[14] = 'Guys fishing'

// ======================================
// do not change 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]+'" alt="'+theImagesAlt[whichImage]+'">');
}

//-->
