<!-- Begin Preschool
var timeDelay = 5; // change delay time in seconds
var Pix = new Array
("../images/theme/preschool1.jpg" 
,"../images/theme/preschool2.jpg" 
,"../images/theme/preschool3.jpg"
,"../images/theme/preschool4.jpg"
,"../images/theme/preschool5.jpg"
);
var howMany = Pix.length;
timeDelay *= 1000;
var PicCurrentNum = 0;
var PicCurrent = new Image();
PicCurrent.src = Pix[PicCurrentNum];
function startPix() {
setInterval("slideshow()", timeDelay);
}
function slideshow() {
PicCurrentNum++;
if (PicCurrentNum == howMany) {
PicCurrentNum = 0;
}
PicCurrent.src = Pix[PicCurrentNum];
document["ChangingPixPreschool"].src = PicCurrent.src;
}
//  End Preschool-->

<!-- Begin Elementary
var timeDelayE = 7; // change delay time in seconds
var PixE = new Array
("../images/theme/elementary08-09-1.jpg" 
,"../images/theme/elementary2.jpg" 
,"../images/theme/elementary3.jpg"
);
var howManyE = PixE.length;
timeDelayE *= 1000;
var PicCurrentNumE = 0;
var PicCurrentE = new Image();
PicCurrentE.src = PixE[PicCurrentNumE];
function startPixE() {
setInterval("slideshowE()", timeDelayE);
}
function slideshowE() {
PicCurrentNumE++;
if (PicCurrentNumE == howManyE) {
PicCurrentNumE = 0;
}
PicCurrentE.src = PixE[PicCurrentNumE];
document["ChangingPixElementary"].src = PicCurrentE.src;
}
//  End Elementary-->

<!-- Begin High School
var timeDelayH = 3; // change delay time in seconds
var PixH = new Array
("../images/theme/MSHS-08-09-02.jpg" 
,"../images/theme/MSHS-08-09-03.jpg" 
,"../images/theme/MSHS-08-09-04.jpg"
,"../images/theme/MSHS-08-09-05.jpg"
,"../images/theme/MSHS-08-09-09.jpg"
,"../images/theme/MSHS-08-09-08.jpg"
,"../images/theme/MSHS-08-09-11.jpg"
,"../images/theme/MSHS-08-09-07.jpg"
,"../images/theme/MSHS-08-09-06.jpg"
,"../images/theme/MSHS-08-09-12.jpg"
);
var howManyH = PixH.length;
timeDelayH *= 1000;
var PicCurrentNumH = 0;
var PicCurrentH = new Image();
PicCurrentH.src = PixH[PicCurrentNumH];
function startPixH() {
setInterval("slideshowH()", timeDelayH);
}
function slideshowH() {
PicCurrentNumH++;
if (PicCurrentNumH == howManyH) {
PicCurrentNumH = 0;
}
PicCurrentH.src = PixH[PicCurrentNumH];
document["ChangingPixHigh"].src = PicCurrentH.src;
}
//  End High School-->

<!-- Begin Facilities
var timeDelayF = 6; // change delay time in seconds
var PixF = new Array
("../images/theme/facilities8.jpg" 
,"../images/theme/facilities2.jpg" 
,"../images/theme/facilities3.jpg"
,"../images/theme/facilities4.jpg"
,"../images/theme/facilities5.jpg"
,"../images/theme/facilities6.jpg"
);
var howManyF = PixF.length;
timeDelayF *= 1000;
var PicCurrentNumF = 0;
var PicCurrentF = new Image();
PicCurrentF.src = PixF[PicCurrentNumH];
function startPixF() {
setInterval("slideshowF()", timeDelayF);
}
function slideshowF() {
PicCurrentNumF++;
if (PicCurrentNumF == howManyF) {
PicCurrentNumF = 0;
}
PicCurrentF.src = PixF[PicCurrentNumF];
document["ChangingPixFacilities"].src = PicCurrentF.src;
}
//  End Facilities-->