﻿// Home template banner4 - Kids Events
//
// Set up the image files to be used.
var theImages4 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages4[0] = 'pf2_h_kids01.jpg'
theImages4[1] = 'pf2_h_kids02.jpg'
theImages4[2] = 'pf2_h_kids03.jpg'

var j = 0
var p = theImages4.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages4[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage4(){
document.write('<a href="/page.aspx?u=1512"><img src="/webdata/graphics/'+theImages4[whichImage]+'" width="140" height="94" alt="Kids Events" border="0" /></a>');
}
