// ==============================================
// This script will randomly switch the image on each page load
// ==============================================

// Set up the image files to be used.
var theImages2 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Remember
// to increment the theImages[x] index!

theImages2[0] = 'images/boysvbaction-01.jpg'
theImages2[1] = 'images/boysvbaction-02.jpg'
theImages2[2] = 'images/qe-kc-football-275.jpg'
//theImages[3] = 'images/pics/pic4.jpg'
//theImages[4] = 'images/pics/pic5.jpg'
//theImages[5] = 'images/pics/pic6.jpg'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages2.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage2 = Math.round(Math.random()*(p-1));
function showImage22(){
document.write('<img src="images/spc2x1.gif" /><img  border="0" width="275" src="'+theImages2[whichImage2]+'">');
}

//-->
