﻿// Home template banner1 - Major Events
//
// Set up the image files to be used.
var theImages1 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages1[0] = 'pf2_h_major01.jpg'
theImages1[1] = 'pf2_h_major02.jpg'
theImages1[2] = 'pf2_h_major03.jpg'
theImages1[3] = 'pf2_h_major04.jpg'
theImages1[4] = 'pf2_h_major05.jpg'

var j = 0
var p = theImages1.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages1[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage1(){
document.write('<a href="/page.aspx?u=1515"><img src="/webdata/graphics/'+theImages1[whichImage]+'" width="134" height="94" alt="Major Events" border="0" /></a>');
}

