// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// NS4-6,IE4-6
// Fade effect only in IE; degrades gracefully

var Pic = new Array();
Pic[0] = Array(5, "Photos Provided by Ms. Otto's Photography Students", "images/slideshow.php?id=96", "");
Pic[1] = Array(5, "Curtains Drama Production", "images/slideshow.php?id=109", "");
Pic[2] = Array(5, "Photos Provided by Ms. Otto's Photography Students", "images/slideshow.php?id=97", "");
Pic[3] = Array(5, "Curtains Drama Production", "images/slideshow.php?id=110", "");
Pic[4] = Array(5, "Photos Provided by Ms. Otto's Photography Students", "images/slideshow.php?id=99", "");
Pic[5] = Array(5, "Curtains Drama Production", "images/slideshow.php?id=111", "");
Pic[6] = Array(5, "Photos Provided by Ms. Otto's Photography Students", "images/slideshow.php?id=98", "");
Pic[7] = Array(5, "Curtains Drama Production", "images/slideshow.php?id=112", "");
Pic[8] = Array(5, "Photos Provided by Ms. Otto's Photography Students", "images/slideshow.php?id=100", "");
Pic[9] = Array(5, "Curtains Drama Production", "images/slideshow.php?id=113", "");
Pic[10] = Array(5, "Photos Provided by Ms. Otto's Photography Students", "images/slideshow.php?id=101", "");
Pic[11] = Array(5, "Curtains Drama Production", "images/slideshow.php?id=114", "");
Pic[12] = Array(5, "Photos Provided by Ms. Otto's Photography Students", "images/slideshow.php?id=102", "");
Pic[13] = Array(5, "Photos Provided by Ms. Otto's Photography Students", "images/slideshow.php?id=103", "");
Pic[14] = Array(5, "Photos Provided by Ms. Otto's Photography Students", "images/slideshow.php?id=104", "");
Pic[15] = Array(5, "Photos Provided by Ms. Otto's Photography Students", "images/slideshow.php?id=105", "");

var preLoad = new Array();
for(var i = 0; Pic.length > i; i++) {
	preLoad[i] = new Image();
	preLoad[i].src = Pic[i][2];
}

var link = document.getElementById("link");
var caption = document.getElementById("caption");
var image = document.getElementById("image");

var j = 0;
function runSlideShow() {
	if(0 == Pic.length) { return; }
	
	if(document.all) {
		image.style.filter="blendTrans(duration=2)";
		image.filters.blendTrans.Apply();
	}
	link.href = Pic[j][3];
	caption.innerHTML = Pic[j][1];
	image.src = preLoad[j].src;
	if(document.all) {
		image.filters.blendTrans.Play();
	}
	
	setTimeout('runSlideShow()', Pic[j][0] * 1000);
	j = (j + 1) % Pic.length;
}
window.onload = runSlideShow;
