var theImages = new Array()
theImages[0] = 'images/footerLombardi.png'
theImages[1] = 'images/footerPeters.png'
theImages[2] = 'images/footerRockefeller.png'
theImages[3] = 'images/footerMurdoch.png'
theImages[4] = 'images/footerMurdoch2.png'
theImages[5] = 'images/footerKroc.png'
theImages[6] = 'images/footerWelch.png'
theImages[7] = 'images/footerWelch2.png'
theImages[8] = 'images/footerBartmann.png'
theImages[9] = 'images/footerBartmann2.png'
theImages[10] = 'images/footerTrump.png'
theImages[11] = 'images/footerKiyosaki.png'
theImages[12] = 'images/footerBartmann3.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]+'">');
}