// JavaScript Document

// random splash generator

function randomSplash()

{
var splashImage=new Array()

// location of images in this array
splashImage[1]="images/splash/thorne-sj03.jpg";
splashImage[2]="images/splash/thorne-sj08.jpg";
splashImage[3]="images/splash/thorne-sj09.jpg";
splashImage[4]="images/splash/thorne-sj12.jpg";
splashImage[5]="images/splash/thorne-sj14.jpg";


var splashCaption=new Array()

// captions
splashCaption[1]="Third Incitation";
splashCaption[2]="Icarus";
splashCaption[3]="Slice";
splashCaption[4]="Bow";
splashCaption[5]="Alliance (detail)";


var getRan=Math.floor(Math.random()*splashImage.length)
if (getRan==0)
getRan=1

document.write('<p><img src=\"'+splashImage[getRan]+'\" alt=\"Thorne Sculpture\" title=\"Sculpture.\" width=\"700\" \/>');

document.write('<p>'+splashCaption[getRan]+'<br \/>');
}
