// *** version 1.0.2 (c) 2003-4, RJ Bigg robert.bigg@esmerk.com
var showt=0;
var wmsg="";
function mkArray(n) {
	this.size=n;
	for(var i=0; i<=n; i++) {
		this[i]='';
	}
}


// *** set the value of numImg to the upper limit of the Images array
var numImg=4;
imgs=new mkArray(numImg);
// *** set the images here
imgs[0]="'images/chtower2.jpg' width='211' height='240' alt='The Campanile'";
imgs[1]="'images/banneraltar1.jpg' width='181' height='274' alt='The High Altar'";
imgs[2]="'images/chtower2.jpg' width='211' height='240' alt='The Campanile'";
imgs[3]="'images/stglc3.jpg' width='180' height='242' alt='The Lady Chapel'";
imgs[4]="'images/chtower2.jpg' width='211' height='240' alt='The Campanile'";
showi=Math.round(Math.random()*numImg);
wmsg="<img src=" + imgs[showi] + " align='right'>";
document.write(wmsg);
//
