<!-- 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/quotes/albert_einstein.gif'
theImages2[1] = 'images/quotes/frank_wright.gif'
theImages2[2] = 'images/quotes/john_payne.gif'
theImages2[3] = 'images/quotes/saint_exupery.gif'
theImages2[4] = 'images/quotes/scott_adams.gif'

// do not edit anything below this line

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

//  End -->
