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

theImages6[0] = 'images/605_bikini/dsc_0871.gif';
theImages6[1] = 'images/605_bikini/dsc_0873.gif';
theImages6[2] = 'images/605_bikini/dsc_0878.gif';
theImages6[3] = 'images/605_bikini/dsc_0879.gif';
theImages6[4] = 'images/605_bikini/dsc_0880.gif';
theImages6[5] = 'images/605_bikini/dsc_0884.gif';
theImages6[6] = 'images/605_bikini/dsc_0886.gif';
theImages6[7] = 'images/605_bikini/dsc_0896.gif';
theImages6[8] = 'images/605_bikini/dsc_0897.gif';
theImages6[9] = 'images/605_bikini/dsc_0901.gif';
theImages6[10] = 'images/605_bikini/dsc_0906.gif';
theImages6[11] = 'images/605_bikini/dsc_0909.gif';


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

var j = 0
var p = theImages6.length;

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

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

//-->

