

var theImages = new Array() 

theImages[0] = 'http://stewartbypowerboat.com/dev/images/main/1.jpg'
theImages[1] = 'http://stewartbypowerboat.com/dev/images/main/2.jpg'
theImages[2] = 'http://stewartbypowerboat.com/dev/images/main/3.jpg'
theImages[3] = 'http://stewartbypowerboat.com/dev/images/main/4.jpg'
theImages[4] = 'http://stewartbypowerboat.com/dev/images/main/5.jpg'
theImages[5] = 'http://stewartbypowerboat.com/dev/images/main/6.jpg'
theImages[6] = 'http://stewartbypowerboat.com/dev/images/main/7.jpg'
theImages[7] = 'http://stewartbypowerboat.com/dev/images/main/8.jpg'
theImages[8] = 'http://stewartbypowerboat.com/dev/images/main/9.jpg'
theImages[9] = 'http://stewartbypowerboat.com/dev/images/main/10.jpg'
theImages[10] = 'http://stewartbypowerboat.com/dev/images/main/11.jpg'
theImages[11] = 'http://stewartbypowerboat.com/dev/images/main/12.jpg'
theImages[12] = 'http://stewartbypowerboat.com/dev/images/main/13.jpg'
theImages[13] = 'http://stewartbypowerboat.com/dev/images/main/14.jpg'
theImages[14] = 'http://stewartbypowerboat.com/dev/images/main/15.jpg'
theImages[15] = 'http://stewartbypowerboat.com/dev/images/main/16.jpg'
theImages[16] = 'http://stewartbypowerboat.com/dev/images/main/17.jpg'
theImages[17] = 'http://stewartbypowerboat.com/dev/images/main/18.jpg'
theImages[18] = 'http://stewartbypowerboat.com/dev/images/main/19.jpg'
theImages[19] = 'http://stewartbypowerboat.com/dev/images/main/20.jpg'
theImages[20] = 'http://stewartbypowerboat.com/dev/images/main/21.jpg'
theImages[21] = 'http://stewartbypowerboat.com/dev/images/main/22.jpg'





var j = 0
var p = theImages.length;
//document.write(p);
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));
document.write[whichImage];
function showImage(){
document.write('<img src="' + theImages[whichImage] + '">');
//document.write(theImages[whichImage]);
}

