var theImages = new Array()
/*theImages[0] = 'http://www.ggmsa.ca/b/banner-anywhere.gif'
theImages[1] = 'http://www.ggmsa.ca/b/banner-ca.gif'
theImages[2] = 'http://www.ggmsa.ca/b/banner-cullen.gif'
theImages[3] = 'http://www.ggmsa.ca/b/banner-hockey.gif'
theImages[4] = 'http://www.ggmsa.ca/b/banner-ig.gif'
theImages[5] = 'http://www.ggmsa.ca/b/banner-jc.gif'
theImages[6] = 'http://www.ggmsa.ca/b/banner-lyon.gif'
theImages[7] = 'http://www.ggmsa.ca/b/banner-mi.gif'
theImages[8] = 'http://www.ggmsa.ca/b/banner-ricks.gif'
theImages[9] = 'http://www.ggmsa.ca/b/banner-stockade.gif'
theImages[10] = 'http://www.ggmsa.ca/b/banner-trophies.gif'
theImages[11] = 'http://www.ggmsa.ca/b/banner-holidayinn.gif'
theImages[12] = 'http://www.ggmsa.ca/b/bbs42banner.gif
theImages[2] = 'http://www.ggmsa.ca/b/banner-cullen.gif'


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 -->


