// JavaScript Document


// random splash generator

function randomSplash()

{
var splashImage=new Array()

// location of images in this array
splashImage[1]="assets/small_front/losballons_t.jpg";
splashImage[2]="assets/newlooks/luxor_side.jpg";
splashImage[3]="assets/newlooks/arrowhead_side.jpg";
splashImage[4]="assets/small_front/spaghetti_nk_t.jpg";
//splashImage[5]="assets/landscapes_5.jpg";
//splashImage[6]="assets/reykjavik_1.jpg";
//splashImage[7]="assets/reykjavik_5.jpg";
//splashImage[8]="assets/waterfalls_5.jpg";


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

document.write('<img src=\"'+splashImage[getRan]+'\" alt=\"Jewelry of Chardavogne.\" title=\"Jewelry of Chardavogne.\" width=\"180\" height=\"120\" \/>');

//document.write('<p>'+splashCaption[getRan]+'<br \/>');
}



// swap image and caption 

function swapPhoto(photoSRC,theCaption,thePrice) {

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

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