// JavaScript Document
//random splash generator

function randomSplash()
{
	
	var splashImage=new Array()
splashImage[1]="images/sunset.jpg";
splashImage[2]="images/oldbridge1.jpg";
splashImage[3]="images/town.jpg";
splashImage[4]="images/olymp.jpg";

/*var splashCaption=new Array()

splashCaption[1]="trim castle, at time of digging";
splashCaption[2]="old bridge, mid 1990s";
splashCaption[3]="aerial view of trim, 1980s";
*/

var getRan=Math.floor(Math.random()*splashImage.length);
if (getRan==0)
getRan=1;
//document.write('<p>here is some text fgsgsdgsd<\/p>');
document.write('<p><img src=\"'+splashImage[getRan]+'\" alt=\"Photos from Trim\" title=\"Photos from Trim\" width=\"482\" height=\"301\"\/><\/a><\/p>');

//document.write('<p>'+splashCaption[getRan]+'<br \/>');
}

function swapPhoto(photoSRC,theCaption)
{
	var displayedCaption = document.getElementById("caption");
	displayedCaption.firstChild.nodeValue = theCaption;
	document.images.imgPhoto.src = "images/" + photoSRC;
}