// JavaScript Document

// random splash generator

function randomSplash()
{
var splashImage=new Array()

// location of images in this array
splashImage[1]="randompics/01.jpg";
splashImage[2]="randompics/02.jpg";
splashImage[3]="randompics/03.jpg";
splashImage[4]="randompics/04.jpg";
splashImage[5]="randompics/05.jpg";
splashImage[6]="randompics/06.jpg";





var splashCaption=new Array()

// captions
splashCaption[1]="";
splashCaption[2]="";
splashCaption[3]="";
splashCaption[4]=" "
splashCaption[5]="";
splashCaption[6]="";





var getRan=Math.floor(Math.random()*(splashImage.length-1));
getRan=getRan+1;

document.write('<p><img src="'+splashImage[getRan]+'" alt="" title="" width="880" height="126" border="1" class="border" \/>');
}

