
<!--// Begin JS Script - Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '/siteRoot/images/pictures/lil-archery.jpg'
theImages[1] = '/siteRoot/images/pictures/lil-baseball.jpg'
theImages[2] = '/siteRoot/images/pictures/lil-cycling.jpg'
theImages[3] = '/siteRoot/images/pictures/lil-dragracing.jpg'
theImages[4] = '/siteRoot/images/pictures/lil-firefighter.jpg'
theImages[5] = '/siteRoot/images/pictures/lil-football.jpg'
theImages[6] = '/siteRoot/images/pictures/lil-golf.jpg'
theImages[7] = '/siteRoot/images/pictures/lil-motorcycle.jpg'
theImages[8] = '/siteRoot/images/pictures/lil-mtbiking.jpg'
theImages[9] = '/siteRoot/images/pictures/lil-rowing.jpg'
theImages[10] = '/siteRoot/images/pictures/lil-senior.jpg'
theImages[11] = '/siteRoot/images/pictures/lil-swimming.jpg'
theImages[12] = '/siteRoot/images/pictures/lil-track.jpg'
theImages[13] = '/siteRoot/images/pictures/lil-basketball.jpg'


// do not edit anything below this line

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]+'" width="160" height="115" hspace="0" vspace="0" id="lil" name="lil" alt="Sports Picture">');
}


showImage();
//  End -->