splashImage = new Array();
splashImage[0] =  '/PLAINS/images/panoramas/800-01.jpg';
splashImage[1] =  '/PLAINS/images/panoramas/800-02.jpg';
splashImage[2] =  '/PLAINS/images/panoramas/800-03.jpg';
splashImage[3] =  '/PLAINS/images/panoramas/800-04.jpg';
splashImage[4] =  '/PLAINS/images/panoramas/800-05.jpg';
splashImage[5] =  '/PLAINS/images/panoramas/800-06.jpg';
splashImage[6] =  '/PLAINS/images/panoramas/long3.jpg';
splashImage[7] =  '/PLAINS/images/panoramas/long2.jpg';

var p = splashImage.length;

var whichsplashImage = Math.round(Math.random()*(p-1));

function writesplashImage() {
if (document.getElementById) {
	document.getElementById("pano").style.backgroundImage='url('+splashImage[whichsplashImage]+')';
}
}


