// Set up the image files to be used.
var theImages2 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.
// Only edit this part
// here is an example if you want to add another banner to be rotated,
// add this to the script below, theImages[3] = 'images/sidephoto3.jpg'
// notice that I changed the number to 3.
// just continue with the pattern. you can virtually add as many banners as you want.


theImages2[0] = 'images/sidephotojosh.jpg'
theImages2[1] = 'images/sidephotoemily.jpg'
theImages2[2] = 'images/sidephoto3.jpg'
theImages2[3] = 'images/sidephoto4.jpg'
theImages2[4] = 'images/sidephotoos.jpg'
theImages2[5] = 'images/sidephotoyosefa.jpg'
theImages2[6] = 'images/sidephoto1.jpg'
theImages2[7] = 'images/sidephoto2.jpg'
theImages2[8] = 'images/sidephotolori.jpg'
theImages2[9] = 'images/sidephoto5.jpg'


// do not edit from this point on
var m = 0
var x = theImages2.length;
var preBuffer2 = new Array()
for (z = 0; z < x; z++){
   preBuffer[z] = new Image()
   preBuffer[z].src = theImages[z]
}
var whichImage2 = Math.round(Math.random()*(x-1));
function showImage2(){
document.write('<img src="'+theImages2[whichImage2]+'">');
}