<!-- 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/photo_devteam1.jpg'
theImages[1] = 'images/photo_devteam_01b.jpg'
theImages[2] = 'images/photo_devteam_01c.jpg'
theImages[3] = 'images/photo_devteam_01d.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 -->


<!-- Begin
// 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.

theImages2[0] = 'images/photo_devteam2.jpg'
theImages2[1] = 'images/photo_devteam_02b.jpg'
theImages2[2] = 'images/photo_devteam_02c.jpg'

// do not edit anything below this line

var j = 0
var p = theImages2.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages2[i]
}
var whichImage2 = Math.round(Math.random()*(p-1));
function showImage2(){
document.write('<img src="'+theImages2[whichImage2]+'">');
}

//  End -->


<!-- Begin
// 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.

theImages3[0] = 'images/photo_devteam3.jpg'
theImages3[1] = 'images/photo_devteam_03b.jpg'
theImages3[2] = 'images/photo_devteam_03c.jpg'
theImages3[3] = 'images/photo_devteam_03d.jpg'

// do not edit anything below this line

var j = 0
var p = theImages3.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages3[i]
}
var whichImage3 = Math.round(Math.random()*(p-1));
function showImage3(){
document.write('<img src="'+theImages3[whichImage3]+'">');
}

//  End -->
