<!--

var theImages = new Array() 

theImages[0] = 'quotes/bible_quotes1.png'
theImages[1] = 'quotes/bible_quotes2.png'
theImages[2] = 'quotes/bible_quotes3.png'
theImages[3] = 'quotes/bible_quotes4.png'
theImages[4] = 'quotes/bible_quotes5.png'
theImages[5] = 'quotes/bible_quotes6.png'
theImages[6] = 'quotes/bible_quotes7.png'
theImages[7] = 'quotes/bible_quotes8.png'
theImages[8] = 'quotes/bible_quotes9.png'
theImages[9] = 'quotes/bible_quotes10.png'
theImages[10] = 'quotes/bible_quotes11.png'
theImages[11] = 'quotes/bible_quotes12.png'
theImages[12] = 'quotes/bible_quotes13.png'
theImages[13] = 'quotes/bible_quotes14.png'
theImages[14] = 'quotes/bible_quotes15.png'
theImages[15] = 'quotes/bible_quotes16.png'

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]+'">');
}

//-->
