
//slideshow settings


var SlideShowSpeed = 7000; //speed each image is displayed in milliseconds
var CrossFadeDuration = 2; //fade duration in seconds

var Picture = new Array();
var Caption = new Array();

//paths to pictures

Picture[0]  = 'slideshow/high.jpg';
Picture[0]  = 'slideshow/middle.jpg';
Picture[0]  = 'slideshow/elem.jpg';


//Picture[1]  = 'slideshow/1.jpg';
//Picture[2]  = 'slideshow/2.jpg';
//Picture[3]  = 'slideshow/3.jpg';
//Picture[4]  = 'slideshow/4.jpg';
//Picture[10]  = 'slideshow/logo.jpg';



//captions for pictures
//number of captions must be equal to number of pictures in array

Caption[0]  = "WHHS";
Caption[0]  = "WHMS";
Caption[0]  = "WHES";

Caption[1]  = "Mrs. Layton and Key Club members plant flower bulbs near the entrance of the high school.";
Caption[2]  = "Mr Lindberg's class field trip.";
Caption[3]  = "2008-2009 Faculty and Staff of Westmont Hilltop High School";
Caption[4]  = "Victors of the Conemaugh Township Wrestling Tournament";



// 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);
}

setTimeout("runSlideShow()",10000);

