// JavaScript Document


// random splash generator

function randomSplash()

{
var splashImage=new Array()

// location of images in this array
splashImage[1]="galleryimages1/certificate.jpg";
splashImage[2]="galleryimages1/jo-sabre2.jpg";
splashImage[3]="galleryimages1/kyosho_love.jpg";
splashImage[4]="galleryimages1/tiger_stick.jpg";
splashImage[5]="galleryimages1/victwin.jpg";
splashImage[6]="galleryimages1/petecors.jpg";
splashImage[7]="galleryimages1/extra3.jpg";
splashImage[8]="galleryimages1/summer.jpg";

var splashCaption=new Array()

// captions
splashCaption[1]="The Rewards of Trainig";
splashCaption[2]="Gas Turbine Sabre";
splashCaption[3]="Kyosho Trainers";
splashCaption[4]="Tiger Stick";
splashCaption[5]="Twin ready to go";
splashCaption[6]="Corsair being Prepared";
splashCaption[7]="YT International Extra 300";
splashCaption[8]="Summer on the Site";

var getRan=Math.floor(Math.random()*splashImage.length)
if (getRan==0)
getRan=1

document.write('<p><img src=\"'+splashImage[getRan]+'\" alt=\"Photos from VMFC" title=\"Photos from VMFC" width=\"400\" height=\"300\" \/>');

document.write('<p>'+splashCaption[getRan]+'<br \/>');
document.write('View more images in the gallery<\/p>');
}



// swap image and caption 

function swapPhoto(photoSRC,theCaption,thePrice) {

	var displayedCaption = document.getElementById("caption");
	
	displayedCaption.firstChild.nodeValue = theCaption;

    document.images.imgPhoto.src = "../galleryimages1/" + photoSRC;
}
