<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/erin13.jpg'
theImages[1] = 'images/erin15.jpg'
theImages[2] = 'images/erin18.jpg'
theImages[3] = 'images/erin20.jpg'
theImages[4] = 'images/erin27.jpg'
theImages[5] = 'images/erin3.jpg'
theImages[6] = 'images/erin4.jpg'
theImages[7] = 'images/erin6.jpg'
theImages[8] = 'images/erin8.jpg'
theImages[9] = 'images/erin9.jpg'
theImages[10] = 'images/jamie1.jpg'
theImages[11] = 'images/jamie10.jpg'
theImages[12] = 'images/jamie11.jpg'
theImages[13] = 'images/jamie16.jpg'
theImages[14] = 'images/jamie13.jpg'
theImages[15] = 'images/jamie14.jpg'
theImages[16] = 'images/jamie15.jpg'
theImages[17] = 'images/jamie18.jpg'
theImages[18] = 'images/jamie22.jpg'
theImages[19] = 'images/jamie9.jpg'
theImages[20] = 'images/jenn1.jpg'
theImages[21] = 'images/jenn10.jpg'
theImages[22] = 'images/jenn12.jpg'
theImages[23] = 'images/jenn14.jpg'
theImages[24] = 'images/jenn16.jpg'
theImages[25] = 'images/jenn19.jpg'
theImages[26] = 'images/jenn8.jpg'
theImages[27] = 'images/jenn18.jpg'
theImages[28] = 'images/jenn17.jpg'
theImages[29] = 'images/jenn13.jpg'
theImages[30] = 'images/jennie1.jpg'
theImages[31] = 'images/jennie11.jpg'
theImages[32] = 'images/jennie17.jpg'
theImages[33] = 'images/jennie15.jpg'
theImages[34] = 'images/jennie3.jpg'
theImages[35] = 'images/jennie4.jpg'
theImages[36] = 'images/jennie6.jpg'
theImages[37] = 'images/jennie9.jpg'
theImages[38] = 'images/jennie19.jpg'
theImages[39] = 'images/jennie20.jpg'
theImages[40] = 'images/julie1.jpg'
theImages[41] = 'images/julie11.jpg'
theImages[42] = 'images/julie12.jpg'
theImages[43] = 'images/julie13.jpg'
theImages[44] = 'images/julie2.jpg'
theImages[45] = 'images/julie4.jpg'
theImages[46] = 'images/julie8.jpg'
theImages[47] = 'images/julie9.jpg'
theImages[48] = 'images/julie7.jpg'
theImages[49] = 'images/julie3.jpg'
theImages[50] = 'images/kathlene15.jpg'
theImages[51] = 'images/kathlene5.jpg'
theImages[52] = 'images/kathlene6.jpg'
theImages[53] = 'images/kathlene7.jpg'
theImages[54] = 'images/kathlene9.jpg'
theImages[55] = 'images/kathlene10.jpg'
theImages[56] = 'images/kathlene14.jpg'
theImages[57] = 'images/kathlene2.jpg'
theImages[58] = 'images/kathlene22.jpg'
theImages[59] = 'images/kathlene11.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('<img src="'+theImages[whichImage]+'">');
}

//  End -->