function rand(numImages)

{

return Math.ceil((Math.random()* numImages));

}



if (window.securepage)

{

var imgdir2 = "../images/";

}

else

{

var imgdir2 = "images/";

}

var splash_images = new Array(

'hedimg-01.jpg' ,

'hedimg-02.jpg' ,

'hedimg-03.jpg' ,

'hedimg-04.jpg' ,

'hedimg-05.jpg' ,

'hedimg-06.jpg' ,

'hedimg-07.jpg' ,

'hedimg-08.jpg');



var index = ( rand(splash_images.length) - 1);


function chooseSplashPhoto()

{

document.write('<img src="' + imgdir2 + splash_images[index] + '" width="506" height="112" alt="Classic City Off Road" border="0">');

}