// JavaScript Document

// random splash generator

function randomSplash()

{

var splashImage=new Array()

// location of images in this array
splashImage[1]="avaske/glaciers_1.jpg";
splashImage[2]="avaske/glaciers_10.jpg";
splashImage[3]="avaske/golden_circle_1.jpg";
splashImage[4]="avaske/landscapes_1.jpg";
splashImage[5]="avaske/landscapes_5.jpg";
splashImage[6]="avaske/reykjavik_1.jpg";
splashImage[7]="avaske/reykjavik_5.jpg";
splashImage[8]="avaske/waterfalls_5.jpg";
splashImage[9]="avaske/glaciers_1.jpg";
splashImage[10]="avaske/glaciers_1.jpg";



var splashCaption=new Array()
// captions
splashCaption[1]="Av Aske 1";
splashCaption[2]="Ice on the beach";
splashCaption[3]="&THORN;ingvellir in winter";
splashCaption[4]="Snow road";
splashCaption[5]="The harbour";
splashCaption[6]="Sun voyager";
splashCaption[7]="Summer at midnight";
splashCaption[8]="Black falls";
splashCaption[9]="Black falls";
splashCaption[10]="Black falls";


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

document.write('<p><img src=\"'+splashImage[getRan]+'\" alt=\"Vanitas.\" title=\"Vanitas.\" width=\"310\" height=\"270\" \/>');

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

// swap image and caption

function swapPhoto(photoSRC,theCaption) {

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

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