// JavaScript Document
<!-- 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] = 'http://faithhopeandchocolate.com/images/headerbg.jpg'
theImages[1] = 'http://faithhopeandchocolate.com/images/quotes/headerbg2.jpg'
theImages[2] = 'http://faithhopeandchocolate.com/images/quotes/headerbg3.jpg'
theImages[3] = 'http://faithhopeandchocolate.com/images/quotes/headerbg4.jpg'
theImages[4] = 'http://faithhopeandchocolate.com/images/quotes/headerbg5.jpg'
theImages[5] = 'http://faithhopeandchocolate.com/images/quotes/headerbg6.jpg'
theImages[6] = 'http://faithhopeandchocolate.com/images/quotes/headerbg7.jpg'
theImages[7] = 'http://faithhopeandchocolate.com/images/quotes/headerbg8.jpg'
theImages[8] = 'http://faithhopeandchocolate.com/images/quotes/headerbg9.jpg'
theImages[9] = 'http://faithhopeandchocolate.com/images/quotes/headerbg10.jpg'
theImages[10] = 'http://faithhopeandchocolate.com/images/quotes/headerbg11.jpg'
theImages[11] = 'http://faithhopeandchocolate.com/images/quotes/headerbg12.jpg'
theImages[12] = 'http://faithhopeandchocolate.com/images/quotes/headerbg13.jpg'
theImages[13] = 'http://faithhopeandchocolate.com/images/quotes/headerbg14.jpg'
theImages[14] = 'http://faithhopeandchocolate.com/images/quotes/headerbg15.jpg'
theImages[15] = 'http://faithhopeandchocolate.com/images/quotes/headerbg16.jpg'
theImages[16] = 'http://faithhopeandchocolate.com/images/quotes/headerbg17.jpg'
theImages[17] = 'http://faithhopeandchocolate.com/images/quotes/headerbg18.jpg'
theImages[18] = 'http://faithhopeandchocolate.com/images/quotes/headerbg19.jpg'
theImages[19] = 'http://faithhopeandchocolate.com/images/quotes/headerbg20.jpg'
theImages[20] = 'http://faithhopeandchocolate.com/images/quotes/headerbg21.jpg'
theImages[21] = 'http://faithhopeandchocolate.com/images/quotes/headerbg22.jpg'
theImages[22] = 'http://faithhopeandchocolate.com/images/quotes/headerbg23.jpg'
theImages[23] = 'http://faithhopeandchocolate.com/images/quotes/headerbg24.jpg'
theImages[24] = 'http://faithhopeandchocolate.com/images/quotes/headerbg25.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 -->
