
var theImages = new Array()

theImages[0] = 'http://pghfilmmakers.org/images/top1.jpg'
theImages[1] = 'http://pghfilmmakers.org/images/top2.jpg'
theImages[2] = 'http://pghfilmmakers.org/images/top3.jpg'
theImages[3] = 'http://pghfilmmakers.org/images/top4.jpg'
theImages[4] = 'http://pghfilmmakers.org/images/top5.jpg'
theImages[5] = 'http://pghfilmmakers.org/images/top6.jpg'
theImages[6] = 'http://pghfilmmakers.org/images/top7.jpg'
theImages[7] = 'http://pghfilmmakers.org/images/top8.jpg'
theImages[8] = 'http://pghfilmmakers.org/images/top9.jpg'
theImages[9] = 'http://pghfilmmakers.org/images/top10.jpg'
theImages[10] = 'http://pghfilmmakers.org/images/top11.jpg'
theImages[11] = 'http://pghfilmmakers.org/images/top12.jpg'
theImages[12] = 'http://pghfilmmakers.org/images/top13.jpg'
theImages[13] = 'http://pghfilmmakers.org/images/top14.jpg'
theImages[14] = 'http://pghfilmmakers.org/images/top15.jpg'
theImages[15] = 'http://pghfilmmakers.org/images/top16.jpg'
theImages[16] = 'http://pghfilmmakers.org/images/top17.jpg'
theImages[17] = 'http://pghfilmmakers.org/images/top18.jpg'
theImages[18] = 'http://pghfilmmakers.org/images/top19.jpg'
theImages[19] = 'http://pghfilmmakers.org/images/top20.jpg'


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]+'">');
}

