// JavaScript Document


// random splash generator

function randomSplash()

{
var splashImage=new Array()

// location of images in this array
splashImage[1]="pictures/tekike1.jpg";
splashImage[2]="pictures/coral1.jpg";
splashImage[3]="pictures/snappers3.jpg";
splashImage[4]="pictures/reyeye.jpg";
splashImage[5]="pictures/cuttlefish15.jpg";
splashImage[6]="pictures/clown.jpg";
splashImage[7]="pictures/bogyo2.jpg";
splashImage[8]="pictures/lionfish.jpg";

var splashCaption=new Array()

// captions
splashCaption[1]="Turtle";
splashCaption[2]="Coral";
splashCaption[3]="Snappers";
splashCaption[4]="Ray Eye";
splashCaption[5]="Cuttle Fish";
splashCaption[6]="Clown Fish";
splashCaption[7]="Bogyo";
splashCaption[8]="Lion Fish";

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

document.write('<p><img src=\"'+splashImage[getRan]+'\" alt=\"Images from the seven seas.\" title=\"Images from the seven seas.\" width=\"400\" height=\"300\" \/>');

document.write('<p>'+splashCaption[getRan]+'<br \/>');
document.write('View more images in the <a href=\"szilvia_web_photos.html\">photos<\/a><\/p>');
}



// swap image and caption 

function swapPhoto(photoSRC,theCaption,thePrice) {

	var displayedCaption = document.getElementById("caption");
	
	displayedCaption.firstChild.nodeValue = theCaption;

    document.images.imgPhoto.src = "images/" + photoSRC;
}

