﻿var atkinsFooters = new Array() 
atkinsFooters[0] = 'footer01.png'
atkinsFooters[1] = 'footer02.png'
atkinsFooters[2] = 'footer03.png'
atkinsFooters[3] = 'footer04.png'
atkinsFooters[4] = 'footer05.png'
atkinsFooters[5] = 'footer06.png'
atkinsFooters[6] = 'footer07.png'
atkinsFooters[7] = 'footer08.png'
atkinsFooters[8] = 'footer09.png'
atkinsFooters[9] = 'footer10.png'

function showFooter(){
											
		var i = 0;
		var p = atkinsFooters.length;
		var preBuffer = new Array();
		for (i = 0; i < p; i++){
		   preBuffer[i] = new Image()
		   preBuffer[i].src = atkinsFooters[i]
		   }
		var whichBanner = Math.round(Math.random()*(p-1));
		
	document.write('<img alt="footer" src="/Footers/'+atkinsFooters[whichBanner]+'" width="940" />');
};
