﻿// Home template banner3 - Visual Art
//
// Set up the image files to be used.
var theImages3 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages3[0] = 'pf2_h_visual01.jpg'
theImages3[1] = 'pf2_h_visual02.jpg'
theImages3[2] = 'pf2_h_visual03.jpg'
theImages3[3] = 'pf2_h_visual04.jpg'
theImages3[4] = 'pf2_h_visual05.jpg'

var j = 0
var p = theImages3.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages3[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage3(){
document.write('<a href="/page.aspx?u=1511"><img src="/webdata/graphics/'+theImages3[whichImage]+'" width="141" height="94" alt="Visual Arts" border="0" /></a>');
}

