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

theImages3[0] = 'images/605_mugshots/dsc_0733.gif';
theImages3[1] = 'images/605_mugshots/dsc_0734.gif';
theImages3[2] = 'images/605_mugshots/dsc_0736.gif';
theImages3[3] = 'images/605_mugshots/dsc_0738.gif';
theImages3[4] = 'images/605_mugshots/dsc_0752.gif';
theImages3[5] = 'images/605_mugshots/dsc_0753.gif';
theImages3[6] = 'images/605_mugshots/dsc_0765.gif';
theImages3[7] = 'images/605_mugshots/dsc_0780.gif';
theImages3[8] = 'images/605_mugshots/dsc_0781.gif';
theImages3[9] = 'images/605_mugshots/dsc_0783.gif';
theImages3[10] = 'images/605_mugshots/dsc_0788.gif';
theImages3[11] = 'images/605_mugshots/dsc_0791.gif';
theImages3[12] = 'images/605_mugshots/dsc_0797.gif';
theImages3[13] = 'images/605_mugshots/dsc_0812.gif';
theImages3[15] = 'images/605_mugshots/dsc_0818.gif';
theImages3[16] = 'images/605_mugshots/dsc_0837.gif';
theImages3[17] = 'images/605_mugshots/dsc_0840.gif';
theImages3[18] = 'images/605_mugshots/dsc_0859.gif';
theImages3[19] = 'images/605_mugshots/mvc-008f1.gif';
theImages3[20] = 'images/605_mugshots/mvc-813f.gif';
theImages3[21] = 'images/605_mugshots/mvc-838f.gif';

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

var j = 0
var p = theImages3.length;

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

var whichImage = Math.round(Math.random()*(p-1));
function showImage3(){
document.write('<img border="0" src="'+theImages3[whichImage]+'" alt="Spring 2006 Mug Shots Gallery">');
}

//-->
