// JavaScript Document

// random splash generator

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

// location of images in this array
splashImage[1]="randompics3/01.jpg";
splashImage[2]="randompics3/02.jpg";
splashImage[3]="randompics3/03.jpg";
splashImage[4]="randompics3/04.jpg";
splashImage[5]="randompics3/05.jpg";
splashImage[6]="randompics3/06.jpg";
splashImage[7]="randompics3/07.jpg";
splashImage[8]="randompics3/08.jpg";
splashImage[9]="randompics3/09.jpg";
splashImage[10]="randompics3/10.jpg";
splashImage[11]="randompics3/11.jpg";
splashImage[12]="randompics3/12.jpg";
splashImage[13]="randompics3/13.jpg";
splashImage[14]="randompics3/14.jpg";
splashImage[15]="randompics3/15.jpg";
splashImage[16]="randompics3/16.jpg";
splashImage[17]="randompics3/17.jpg";
splashImage[18]="randompics3/18.jpg";
splashImage[19]="randompics3/19.jpg";
splashImage[20]="randompics3/20.jpg";
splashImage[21]="randompics3/21.jpg";
splashImage[22]="randompics3/22.jpg";
splashImage[23]="randompics3/23.jpg";
splashImage[24]="randompics3/24.jpg";
splashImage[25]="randompics3/25.jpg";
splashImage[26]="randompics3/26.jpg";
splashImage[27]="randompics3/27.jpg";
splashImage[28]="randompics3/28.jpg";
splashImage[29]="randompics3/29.jpg";
splashImage[30]="randompics3/30.jpg";





var splashCaption=new Array()

// captions
splashCaption[1]="";
splashCaption[2]="";
splashCaption[3]="";
splashCaption[4]=" "
splashCaption[5]="";
splashCaption[6]="";
splashCaption[7]="";
splashCaption[8]="";
splashCaption[9]="";
splashCaption[10]="";
splashCaption[11]="";
splashCaption[12]="";
splashCaption[13]="";
splashCaption[14]="";
splashCaption[15]="";
splashCaption[16]="";
splashCaption[17]="";
splashCaption[18]="";
splashCaption[19]="";
splashCaption[20]="";
splashCaption[21]="";
splashCaption[22]="";
splashCaption[23]="";
splashCaption[24]="";
splashCaption[25]="";
splashCaption[26]="";
splashCaption[27]="";
splashCaption[28]="";
splashCaption[29]="";
splashCaption[30]="";
splashCaption[31]="";
splashCaption[32]="";
splashCaption[33]="";
splashCaption[34]="";
splashCaption[35]="";




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

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


