
<!--
// Set up the image files to be used.
var theImages4 = 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!

theImages4[0] = 'images/605_belly/dsc_0861.gif';
theImages4[1] = 'images/605_belly/dsc_0862.gif';
theImages4[2] = 'images/605_belly/dsc_0863.gif';
theImages4[3] = 'images/605_belly/dsc_0864.gif';
theImages4[4] = 'images/605_belly/dsc_0865.gif';
theImages4[5] = 'images/605_belly/dsc_0866.gif';
theImages4[6] = 'images/605_belly/dsc_0868.gif';
theImages4[7] = 'images/605_belly/dsc_0869.gif';

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages4.length;

var pBuffer = new Array()
for (i = 0; i < p; i++){
   pBuffer[i] = new Image()
   pBuffer[i].src = theImages4[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage4(){
document.write('<img border="0" src="../'+theImages4[whichImage]+'" alt="Spring 2006 Beer Belly Contest Gallery">');
}

//-->
