<!-- Begin

var theImages = new Array()

theImages[0] = 'images/staticpages/header_img_beachrunner.JPG'
theImages[1] = 'images/staticpages/header_img_windingpath.JPG'
theImages[2] = 'images/staticpages/header_img_tworunners.JPG'
theImages[3] = 'images/staticpages/header_img_malerunner.JPG'
theImages[4] = 'images/staticpages/header_img_mthood.JPG'
theImages[5] = 'images/staticpages/header_img_highdesertrunner.JPG'
theImages[6] = 'images/staticpages/header_img_mountains.JPG'
theImages[7] = 'images/staticpages/header_img_header_img_oaktree.JPG'
theImages[8] = 'images/staticpages/header_img_smokeymountains.JPG'
theImages[6] = 'images/staticpages/header_img_bambooforest.JPG'
theImages[7] = 'images/staticpages/header_img_fallrunner.JPG'
theImages[8] = 'images/staticpages/header_img_femalerunner.JPG'
// theImages[5] = 'images/staticpages/header_img_highdesertrunner.JPG'

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]+'">');
}

//  End -->
