// 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";
splashImage[7]="randompics/07.jpg";
splashImage[8]="randompics/08.jpg";
splashImage[9]="randompics/09.jpg";
splashImage[10]="randompics/10.jpg";
splashImage[11]="randompics/11.jpg";
splashImage[12]="randompics/12.jpg";
splashImage[13]="randompics/13.jpg";
splashImage[14]="randompics/14.jpg";
splashImage[15]="randompics/15.jpg";
splashImage[16]="randompics/16.jpg";
splashImage[17]="randompics/17.jpg";
splashImage[18]="randompics/18.jpg";
splashImage[19]="randompics/19.jpg";
splashImage[20]="randompics/20.jpg";
splashImage[21]="randompics/21.jpg";
splashImage[22]="randompics/22.jpg";
splashImage[23]="randompics/23.jpg";
splashImage[24]="randompics/24.jpg";
splashImage[25]="randompics/25.jpg";
splashImage[26]="randompics/26.jpg";
splashImage[27]="randompics/27.jpg";
splashImage[28]="randompics/28.jpg";
splashImage[29]="randompics/29.jpg";
splashImage[30]="randompics/30.jpg";
splashImage[31]="randompics/31.jpg";
splashImage[32]="randompics/32.jpg";
splashImage[33]="randompics/33.jpg";
splashImage[34]="randompics/34.jpg";
splashImage[35]="randompics/35.jpg";
splashImage[36]="randompics/36.jpg";
splashImage[37]="randompics/37.jpg";
splashImage[38]="randompics/38.jpg";
splashImage[39]="randompics/39.jpg";
splashImage[40]="randompics/40.jpg";
splashImage[41]="randompics/41.jpg";
splashImage[42]="randompics/42.jpg";
splashImage[43]="randompics/43.jpg";
splashImage[44]="randompics/44.jpg";
splashImage[45]="randompics/45.jpg";
splashImage[46]="randompics/46.jpg";
splashImage[47]="randompics/47.jpg";
splashImage[48]="randompics/48.jpg";
splashImage[49]="randompics/49.jpg";
splashImage[50]="randompics/50.jpg";
splashImage[51]="randompics/51.jpg";
splashImage[52]="randompics/52.jpg";
splashImage[53]="randompics/53.jpg";
splashImage[54]="randompics/54.jpg";
splashImage[55]="randompics/55.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]="";
splashCaption[36]="";
splashCaption[37]="";
splashCaption[38]="";
splashCaption[39]="";
splashCaption[40]="";
splashCaption[41]="";
splashCaption[42]="";
splashCaption[43]="";
splashCaption[44]="";
splashCaption[45]="";
splashCaption[46]="";
splashCaption[47]="";
splashCaption[48]="";
splashCaption[49]="";
splashCaption[50]="";
splashCaption[51]="";
splashCaption[52]="";
splashCaption[53]="";
splashCaption[54]="";
splashCaption[55]="";





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

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


