// JavaScript Docum

// random splash generator

function randomSplash()

{
// subsequent code goes here
var splashImage=new Array()
// location of images in this array
splashImage[1]=assets/front01.jpg;
splashImage[2]=assets/front02.jpg;
splashImage[3]=assets/front03.jpg;
splashImage[4]=assets/front04.jpg;
splashImage[5]=assets/front05.jpg;
splashImage[6]=assets/front06.jpg;

var splashCaption=new Array()
//captions
splashCaption[1]="The Kiss (March 2005)";
splashCaption[2]="Blue (May 2005)";
splashCaption[3]="Life (February 2005)";
splashCaption[4]="A Walk to the Wild Side (January 2005)";
splashCaption[5]="Business Man (December 2004)";
splashCaption[6]="Together (November 2004)";

var getRan=Math.floor(Math.random()*splashImage.length);
if (getRan==0)
getRan=1;

document.write('<p><img src="'+splashImage[getRan]+'" alt="Front Image" title="Justin Thai Photographer" width="660" height="368" \/><\/a><\/p>);
document.write('<p>'+splashCaption[getRan]+'<br \/');
}