// JavaScript Document

// random Splash generator

function randomSplash()

{
	var splashImage=new Array()
	
	// location of images in this array
	splashImage[1]="images/victoria.jpg";
	
	var splashCaption=new Array()
	
	// Captions
	splashCaption[1]="Harriers Hostess Victoria Kidd";
	
	var getRan=Math.floor(Math.random()*splashImage.length);
	if (getRan==0)
	getRan=1;
	
	document.write('<p><img src="'+splashImage[getRan]+'" alt="St@tto\'s Kidderminster Harriers Site Sponsors '+splashCaption[getRan]+'" title="St@tto\'s Kidderminster Harriers Site Sponsors '+splashCaption[getRan]+'" width="250" height="292" class="fig" \/><br />St@tto\'s Kidderminster Harriers Site<br />Sponsors<br />');
	
	document.write(splashCaption[getRan]+'<\/p>');
}

// Swap image and caption

function swapPhoto(photoSRC, theCaption) {
	var displayedCaption = document.getElementById("caption");
	 
	 displayedCaption.firstChild.nodeValue = theCaption;
	 
	 document.images.imgPhoto.src = "../images/" + photoSRC;
}

