var photos2 = new Array() // do not change this
photos2[0] = 'images/footerLeft/1.jpg'
photos2[1] = 'images/footerLeft/2.jpg'
photos2[2] = 'images/footerLeft/3.jpg'
photos2[3] = 'images/footerLeft/4.jpg'
photos2[4] = 'images/footerLeft/5.jpg'
photos2[5] = 'images/footerLeft/6.jpg'
photos2[6] = 'images/footerLeft/7.jpg'
photos2[7] = 'images/footerLeft/8.jpg'

var j = 0
var p = photos2.length;
var preBuffer = new Array()
for (i = 0; i < p; i++) {
   preBuffer[i] = new Image()
   preBuffer[i].src = photos2[i]
}
var whichImage = Math.round(Math.random()*(p-1));
var theImage = photos2[whichImage];

document.write('<img src="'+theImage+'" border="0" width="418" height="74" alt="Swamp and River Tours">');
