<!--// [START] Image Refresher 

var theImages = new Array()

theImages[0] = '/images/footer/f_lot1.jpg'
theImages[1] = '/images/footer/f_lot2.jpg'
theImages[2] = '/images/footer/f_lot3.jpg'
theImages[3] = '/images/footer/f_lot4.jpg'
theImages[4] = '/images/footer/f_lot5.jpg'
theImages[5] = '/images/footer/f_lot6.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('<a href="/">')
document.write('<img src=\"'+theImages[whichImage]+'\" width=\"606\" height=\"111\" alt=\"Pensacola Auto Mart\" vspace=\"0\" hspace=\"0\" border=\"0\">');
//document.write('</a>')
}
//-->
