<!--

// 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] = 'gfx/gfx_sidephoto01.jpg'
theImages[1] = 'gfx/gfx_sidephoto02.jpg'
theImages[2] = 'gfx/gfx_sidephoto03.jpg'
theImages[3] = 'gfx/gfx_sidephoto04.jpg'
theImages[4] = 'gfx/gfx_sidephoto05.jpg'
theImages[5] = 'gfx/gfx_sidephoto06.jpg'
theImages[6] = 'gfx/gfx_sidephoto07.jpg'
theImages[7] = 'gfx/gfx_sidephoto08.jpg'
theImages[8] = 'gfx/gfx_sidephoto09.jpg'
theImages[9] = 'gfx/gfx_sidephoto10.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]+'">');
}

// 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] = 'gfx/gfx_quote01.gif'
theImages2[1] = 'gfx/gfx_quote02.gif'
theImages2[2] = 'gfx/gfx_quote03.gif'
theImages2[3] = 'gfx/gfx_quote04.gif'
theImages2[4] = 'gfx/gfx_quote05.gif'
theImages2[5] = 'gfx/gfx_quote06.gif'
theImages2[6] = 'gfx/gfx_quote07.gif'
theImages2[7] = 'gfx/gfx_quote08.gif'
theImages2[8] = 'gfx/gfx_quote09.gif'
theImages2[9] = 'gfx/gfx_quote10.gif'
theImages2[10] = 'gfx/gfx_quote11.gif'
theImages2[11] = 'gfx/gfx_quote12.gif'
theImages2[12] = 'gfx/gfx_quote13.gif'

// 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]+'">');
}


//-->