// JavaScript Document

// swap image and caption

function swapPhoto(photoSRC,theCaption)
{

var displayedCaption = document.getElementById("caption");
displayedCaption.firstChild.nodeValue = theCaption;
document.images.imgPhoto.src = "../assets/fotos/" + photoSRC;

}

// random splash generator

function randomSplash()

{
var splashImage=new Array()

// location of images in this array
splashImage[1]="../assets/fotos/pot01.jpg";
splashImage[2]="../assets/fotos/pot02.jpg";
splashImage[3]="../assets/fotos/pot03.jpg";
splashImage[4]="../assets/fotos/pot04.jpg";
splashImage[5]="../assets/fotos/pot05.jpg";
splashImage[6]="../assets/fotos/pot06.jpg";
splashImage[7]="../assets/fotos/pot07.jpg";
splashImage[8]="../assets/fotos/pot08.jpg";
splashImage[9]="../assets/fotos/pot09.jpg";
splashImage[10]="../assets/fotos/pot10.jpg";
splashImage[11]="../assets/fotos/pot11.jpg";
splashImage[12]="../assets/fotos/theepot01.jpg";
splashImage[13]="../assets/fotos/theepot02.jpg";
splashImage[14]="../assets/fotos/huid01.jpg";


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

document.write('<p><img src=\"'+splashImage[getRan]+'\" alt=\"Werk van Addy Meewisse\" title=\"Werk van Addy Meewisse\" width=\"400\" height=\"300\" \/>');

}

