function rand(numImages)

{

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

}



if (window.securepage)

{

var imgdir2 = "../images/";

}

else

{

var imgdir2 = "../../images/";

}


var splash_images = new Array(

'header-1.jpg' ,

'header-2.jpg' ,

'header-3.jpg' ,

'header-4.jpg' ,

'header-5.jpg' ,

'header-6.jpg' ,

'header-7.jpg' ,

'header-8.jpg' ,

'header-9.jpg' ,

'header-10.jpg');


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


function chooseSplashPhoto()

{

document.write('<img src="' + imgdir2 + splash_images[index] + '" width="760" height="70" alt="Whitewall Designs" border="0">');

}