// JavaScript Document

// random splash generator

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

// location of images in this array
splashImage[1]="randompics2/01.jpg";
splashImage[2]="randompics2/02.jpg";
splashImage[3]="randompics2/03.jpg";
splashImage[4]="randompics2/04.jpg";
splashImage[5]="randompics2/05.jpg";
splashImage[6]="randompics2/06.jpg";
splashImage[7]="randompics2/07.jpg";
splashImage[8]="randompics2/08.jpg";
splashImage[9]="randompics2/09.jpg";
splashImage[10]="randompics2/10.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]="";






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" \/>');
}


