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-cfm.gif'
theImages[3] = 'http://www.ggmsa.ca/b/banner-cullen.gif'
theImages[4] = 'http://www.ggmsa.ca/b/banner-foto.gif'
theImages[5] = 'http://www.ggmsa.ca/b/banner-gatto.gif'
theImages[6] = 'http://www.ggmsa.ca/b/banner-gcs.gif'
theImages[7] = 'http://www.ggmsa.ca/b/banner-gia.gif'
theImages[8] = 'http://www.ggmsa.ca/b/banner-harmony.gif'
theImages[9] = 'http://www.ggmsa.ca/b/banner-hockey.gif'
theImages[10] = 'http://www.ggmsa.ca/b/banner-homelife.gif'
theImages[11] = 'http://www.ggmsa.ca/b/banner-ig.gif'
theImages[12] = 'http://www.ggmsa.ca/b/banner-jc.gif'
theImages[13] = 'http://www.ggmsa.ca/b/banner-lain.jpg'
theImages[14] = 'http://www.ggmsa.ca/b/banner-lyon.gif'
theImages[15] = 'http://www.ggmsa.ca/b/banner-merit.gif'
theImages[16] = 'http://www.ggmsa.ca/b/banner-mi.gif'
theImages[17] = 'http://www.ggmsa.ca/b/banner-ngf.gif'
theImages[18] = 'http://www.ggmsa.ca/b/banner-rheem.gif'
theImages[19] = 'http://www.ggmsa.ca/b/banner-ricks.gif'
theImages[20] = 'http://www.ggmsa.ca/b/banner-score.gif'
theImages[21] = 'http://www.ggmsa.ca/b/banner-seabrook.gif'
theImages[22] = 'http://www.ggmsa.ca/b/banner-stockade.gif'
theImages[23] = 'http://www.ggmsa.ca/b/banner-talie.gif'
theImages[24] = 'http://www.ggmsa.ca/b/banner-trophies.gif'
theImages[25] = 'http://www.ggmsa.ca/b/banner-vertexxa.gif'
theImages[26] = 'http://www.ggmsa.ca/b/banner-fig.png'
theImages[27] = 'http://www.ggmsa.ca/b/banner-holidayinn.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 -->

