// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 4000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 5;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = 'img/SlideShow-Dancers-01.jpg';
Picture[2]  = 'img/SlideShow-LochVaa-01.jpg';
Picture[3]  = 'img/SlideShow-Carumba-01.jpg';
Picture[4]  = 'img/SlideShow-Cairngorm-01.jpg';
Picture[5]  = 'img/SlideShow-Chainsaw-01.jpg';
Picture[6]  = 'img/SlideShow-Bridge-02.jpg';
Picture[7]  = 'img/SlideShow-Wallace-01.jpg';
Picture[8]  = 'img/SlideShow-LochVaa-02.jpg';
Picture[9]  = 'img/SlideShow-MTB-01.jpg';
Picture[10]  = 'img/SlideShow-Clava-01.jpg';
Picture[11]  = 'img/SlideShow-MTB-02.jpg';
Picture[12]  = 'img/SlideShow-Cabin-01.jpg';
Picture[13]  = 'img/SlideShow-Carnival-01.jpg';
Picture[14]  = 'img/SlideShow-Motion-01.jpg';
Picture[15]  = 'img/SlideShow-HighlandCow-01.jpg';

Picture[16]  = 'img/SlideShow-Bridge-01.jpg';


// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "Highland Dancers";
Caption[2]  = "Serenity On Loch Vaa";
Caption[3]  = "Aye Carrumba";
Caption[4]  = "The Cairngorms";
Caption[5]  = "Chainsaw Sculpture";
Caption[6]  = "The Old Bridge At Night";
Caption[7]  = "Wallace Lives";
Caption[8]  = "Reflections In Loch Vaa";
Caption[9]  = "MTB Along The Dulnain";
Caption[10]  = "Clava-Mystical Greens";
Caption[11]  = "Nightrides For The Hardy";
Caption[12]  = "Charlie\'s Cabin";
Caption[13]  = "Carrbridge LIVE!";
Caption[14]  = "Carrbridge in Motion";
Caption[15]  = "Highland Cow";

Caption[16]  = "Drochaid Charra";

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
document.images.SlidePhoto.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.getElementById) document.images.SlidePhoto;
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
