var SlideShowSpeed = 2500;
var CrossFadeDuration = 2500;
var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this
Picture[1]  = 'ImagesSS/gw.png';
Picture[2]  = 'ImagesSS/ba.png';
Picture[3]  = 'ImagesSS/bb.png';
Picture[4]  = 'ImagesSS/bh.png';
Picture[5]  = 'ImagesSS/br.png';
Picture[6]  = 'ImagesSS/cg.png';
Picture[7]  = 'ImagesSS/ds.png';
Picture[8]  = 'ImagesSS/fs.png';
Picture[9]  = 'ImagesSS/ft.png';
Picture[10]  = 'ImagesSS/bk1.png';
Picture[11]  = 'ImagesSS/pies.png';
Picture[12]  = 'ImagesSS/sc.png';
Picture[13]  = 'ImagesSS/vj.png';
Picture[14]  = 'ImagesSS/wf.png';
Picture[15]  = 'ImagesSS/ws.png';
Picture[16]  = 'ImagesSS/bk2.png';
Picture[17]  = 'ImagesSS/bk3.png';
Picture[18]  = 'ImagesSS/bk4.png';
Picture[19]  = 'ImagesSS/cl1.png';
Picture[20]  = 'ImagesSS/cl2.png';
Picture[21]  = 'ImagesSS/cl3.png';
Picture[22]  = 'ImagesSS/cl4.png';
Picture[23]  = 'ImagesSS/cr.png';
Picture[24]  = 'ImagesSS/dl.png';
Picture[25]  = 'ImagesSS/dl2.png';
Picture[26]  = 'ImagesSS/dl3.png';
Picture[27]  = 'ImagesSS/dl4.png';
Picture[28]  = 'ImagesSS/dl5.png';
Picture[29]  = 'ImagesSS/m1.png';
Picture[30]  = 'ImagesSS/m2.png';
Picture[31]  = 'ImagesSS/m3.png';
Picture[32]  = 'ImagesSS/sg1.png';
Picture[33]  = 'ImagesSS/sg2.png';
Picture[34]  = 'ImagesSS/tc.png';
Picture[35]  = 'ImagesSS/tl.png';
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]  = "";

// =====================================
// 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);
}

