var SlideShowSpeed = 2500;
var CrossFadeDuration = 2500;
var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this
Picture[1]  = 'PICTURES2/1.JPG';
Picture[2]  = 'PICTURES2/2.JPG';
Picture[3]  = 'PICTURES2/3.JPG';
Picture[4]  = 'PICTURES2/4.JPG';
Picture[5]  = 'PICTURES2/5.JPG';
Picture[6]  = 'PICTURES2/6.JPG';
Picture[7]  = 'PICTURES2/7.JPG';
Picture[8]  = 'PICTURES2/8.JPG';
Picture[9]  = 'PICTURES2/9.JPG';
Picture[10]  = 'PICTURES2/10.JPG';
Picture[11]  = 'PICTURES2/11.JPG';
Picture[12]  = 'PICTURES2/12.JPG';
Picture[13]  = 'PICTURES2/13.JPG';
Picture[14]  = 'PICTURES2/14.JPG';
Picture[15]  = 'PICTURES2/15.JPG';
Picture[16]  = 'PICTURES2/16.JPG';
Picture[17]  = 'PICTURES2/17.JPG';
Picture[18]  = 'PICTURES2/18.JPG';
Picture[19]  = 'PICTURES2/19.JPG';
Picture[20]  = 'PICTURES2/20.JPG';
Picture[21]  = 'PICTURES2/21.JPG';
Picture[22]  = 'PICTURES2/22.JPG';
Picture[23]  = 'PICTURES2/23.JPG';
Picture[24]  = 'PICTURES2/24.JPG';
Picture[25]  = 'PICTURES2/25.JPG';
Picture[26]  = 'PICTURES2/26.JPG';
Picture[27]  = 'PICTURES2/27.JPG';
Picture[28]  = 'PICTURES2/28.JPG';
Picture[29]  = 'PICTURES2/29.JPG';
Picture[30]  = 'PICTURES2/30.JPG';
Picture[31]  = 'PICTURES2/31.JPG';
Picture[32]  = 'PICTURES2/32.JPG';
Picture[33]  = 'PICTURES2/33.JPG';
Picture[34]  = 'PICTURES2/34.JPG';
Picture[35]  = 'PICTURES2/35.JPG';
Picture[36]  = 'PICTURES2/36.JPG';
Picture[37]  = 'PICTURES2/37.JPG';
Picture[38]  = 'PICTURES2/38.JPG';
Picture[39]  = 'PICTURES2/39.JPG';
Picture[40]  = 'PICTURES2/40.JPG';
Picture[41]  = 'PICTURES2/41.JPG';
Picture[42]  = 'PICTURES2/42.JPG';
Picture[43]  = 'PICTURES2/43.JPG';
Picture[44]  = 'PICTURES2/44.JPG';
Picture[45]  = 'PICTURES2/45.JPG';
Picture[46]  = 'PICTURES2/46.JPG';
Picture[47]  = 'PICTURES2/47.JPG';
Picture[48]  = 'PICTURES2/48.JPG';
Picture[49]  = 'PICTURES2/49.JPG';
Picture[50]  = 'PICTURES2/50.JPG';
Picture[51]  = 'PICTURES2/51.JPG';
Picture[52]  = 'PICTURES2/52.JPG';
Picture[53]  = 'PICTURES2/53.JPG';
Caption[1]  = "";
Caption[2]  = "";
Caption[3]  = "";
Caption[4]  = "";
Caption[5]  = "";
Caption[6]  = "";
Caption[7]  = "";
Caption[8]  = "";
Caption[9]  = "";
Caption[10]  = "";
Caption[11]  = "";
Caption[12]  = "";
Caption[13]  = "";
Caption[14]  = "";
Caption[15]  = "";
Caption[16]  = "";
Caption[17]  = "";
Caption[18]  = "";
Caption[19]  = "";
Caption[20]  = "";
Caption[21]  = "";
Caption[22]  = "";
Caption[23]  = "";
Caption[24]  = "";
Caption[25]  = "";
Caption[26]  = "";
Caption[27]  = "";
Caption[28]  = "";
Caption[29]  = "";
Caption[30]  = "";
Caption[31]  = "";
Caption[32]  = "";
Caption[33]  = "";
Caption[34]  = "";
Caption[35]  = "";
Caption[36]  = "";
Caption[37]  = "";
Caption[38]  = "";
Caption[39]  = "";
Caption[40]  = "";
Caption[41]  = "";
Caption[42]  = "";
Caption[43]  = "";
Caption[44]  = "";
Caption[45]  = "";
Caption[46]  = "";
Caption[47]  = "";
Caption[48]  = "";
Caption[49]  = "";
Caption[50]  = "";
Caption[51]  = "";
Caption[52]  = "";
Caption[53]  = "";

// =====================================
// 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);
}

