<!-- Begin

var theImages1 = new Array() 

theImages1[0] = 'http://stpaulapostle.com.au/images/Stpauls-Picture-banner.jpg'
theImages1[1] = 'http://stpaulapostle.com.au/images/Stpauls-Picture-banner-2.jpg'
theImages1[2] = 'http://stpaulapostle.com.au/images/Stpauls-Picture-banner-3.jpg'
theImages1[3] = 'http://stpaulapostle.com.au/images/Stpauls-Picture-banner-4.jpg'
theImages1[4] = 'http://stpaulapostle.com.au/images/Stpauls-Picture-banner-5.jpg'
theImages1[5] = 'http://stpaulapostle.com.au/images/Stpauls-Picture-banner-6.jpg'
theImages1[6] = 'http://stpaulapostle.com.au/images/Stpauls-Picture-banner-7.jpg'
theImages1[7] = 'http://stpaulapostle.com.au/images/Stpauls-Picture-banner-9.jpg'
theImages1[8] = 'http://stpaulapostle.com.au/images/Stpauls-Picture-banner-10.jpg'

// do not edit anything below this line

var j = 0
var q = theImages1.length;
var preBuffer = new Array()
for (s = 0; s < q; s++){
   preBuffer[s] = new Image()
   preBuffer[s].src = theImages1[s]
}
var whichImage1 = Math.round(Math.random()*(q-1));
function showBanner(){
document.write('<div style="text-align:center"><img src="'+theImages1[whichImage1]+'" alt="Banner" width="619px"></div>');
}

//  End -->

