// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 5000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

// Specify the image files...
Picture[1]  = '../photogallery/slideshow/expoPage/expo1.jpg';
Picture[2]  = '../photogallery/slideshow/expoPage/expo2.jpg';
Picture[3]  = '../photogallery/slideshow/expoPage/expo3.jpg';
Picture[4]  = '../photogallery/slideshow/expoPage/expo4.jpg';
Picture[5]  = '../photogallery/slideshow/expoPage/expo5.jpg';
Picture[6]  = '../photogallery/slideshow/expoPage/expo6.jpg';
Picture[7]  = '../photogallery/slideshow/expoPage/expo7.jpg';
Picture[8]  = '../photogallery/slideshow/expoPage/expo8.jpg';
Picture[9]  = '../photogallery/slideshow/expoPage/expo9.jpg';
Picture[10] = '../photogallery/slideshow/expoPage/expo10.jpg';
Picture[11] = '../photogallery/slideshow/expoPage/expo11.jpg';
Picture[12] = '../photogallery/slideshow/expoPage/expo12.jpg';
Picture[13] = '../photogallery/slideshow/expoPage/expo13.jpg';
Picture[14] = '../photogallery/slideshow/expoPage/expo14.jpg';

// Specify the Captions...
Caption[1]  = "The Holiday Season's Largest Train Show";
Caption[2]  = "The Holiday Season's Largest Train Show";
Caption[3]  = "Sat 10am-5pm, Sun 10am-4pm";
Caption[4]  = "Sat 10am-5pm, Sun 10am-4pm";
Caption[5]  = "Operating Layouts - All Scales";
Caption[6]  = "Operating Layouts - All Scales";
Caption[7]  = "Operating Layouts - All Scales";
Caption[8]  = "Over 220 Dealer Tables - See &amp Buy the Latest Products";
Caption[9]  = "Over 220 Dealer Tables - See &amp Buy the Latest Products";
Caption[10] = "Holiday Shopping";
Caption[11] = "Holiday Wishes";
Caption[12] = "Model Railroading Brings Families Together!";
Caption[13] = "Model Railroading Brings Families Together!";
Caption[14] = "Model Railroading Brings Families Together!";

// Do not edit anything below this line
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(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
