window.onload = initAll;

var currImg = 0;

var captionText = new Array();
captionText[0] = "Shane in Colorado on an Outward Bound summer trip.";
captionText[1] = "Shane with a group of students from other EL Schools while in Colorado.";
captionText[2] = "Shane with his entire team.";
captionText[3] = "Wow, what a view!";
captionText[4] = "We are proud of you Shane!";
captionText[5] = "The Harborside 2D Art class at Gateway with a guest artist from UW Milwaukee on Earth Day.";
captionText[6] = "Greg and Gretchen work on their mud stencils for Mrs. Henkel's art class.";
captionText[7] = "10th grade Harborside students work with a guest artist at Gateway Technical College on Earth Day.";
captionText[8] = "Rachel working on her mud stencil at Gateway.";
captionText[9] = "";
captionText[10] = "";
captionText[11] = "";
captionText[12] = "";
captionText[13] = "";
captionText[14] = "";
captionText[15] = "Choir singing at the end of Freshman Camp.";
captionText[16] = "Car Wash fundraiser.";
captionText[17] = "Students at Character Quest in Galena Illinois for leadership training.";
captionText[18] = "Character Quest students doing an activity.";
captionText[19] = "David and Mr. Buschmann eating MREs at Character Quest.";
captionText[20] = "Students at Character Quest.";
captionText[21] = "Finding our way through the woods.";
captionText[22] = "Character Quest activity";
captionText[23] = "Character Quest";
captionText[24] = "Anthony, Robert, and David";
captionText[25] = "2nd annual school picnic";
captionText[26] = "2nd annual school picnic";
captionText[27] = "2nd annual school picnic";
captionText[28] = "Character Quest students";
captionText[29] = "Students visit a college";
captionText[30] = "Sophomores at UW Whitewater";
captionText[31] = "Sophomores at UW Whitewater";
captionText[32] = "Freshman doing biology work at Chiwaukee Prairie";
captionText[33] = "9th grade at Chiwaukee";
captionText[34] = "Chiwaukee Prairie field work";
captionText[35] = "Beth at Chiwaukee";
captionText[36] = "Taking notes";
captionText[37] = "Tranace during a gallery walk";
captionText[38] = "Gallery walk";
captionText[39] = "Sophomore's foul water chemistry experiment";
captionText[40] = "Harborside students at a dance";
captionText[41] = "Harborside students at a dance";
captionText[42] = "Our Dance!";
captionText[43] = "Eric in front of Abraham Lincoln statue during a history community walk";
captionText[44] = "Students fishing at Camp Oh-Da-Ko-Ta";
captionText[45] = "Kathryn and Giselle at the end of the year dance at Carthage College";
captionText[46] = "Juan, Mr. Buschmann, and Mr. Warnecke in the gym.";
captionText[47] = "Sophomores doing a lab";
captionText[48] = "Gallery walk.";
captionText[49] = "Students at the dance at the YMCA.";
captionText[50] = "Ali playing softball - Go Bradford Softball!";
captionText[51] = "Robert teaching students about wilderness survival.";
captionText[52] = "Mr. Nepper leading a trust activity.";
captionText[53] = "Trust activity at Freshman camp.";

var images = new Array();

images[0] = "shane1.jpg";
images[1] = "shane2.jpg";
images[2] = "shane3.jpg";
images[3] = "shane4.jpg";
images[4] = "shane5.jpg";
images[5] = "MUDSTENCILS-058.jpg";
images[6] = "MUDSTENCILS-012.jpg";
images[7] = "MUDSTENCILS-019.jpg";
images[8] = "MUDSTENCILS-072.jpg";
images[9] = "MUDSTENCILS-007.jpg";
images[10] = "MUDSTENCILS-016.jpg";
images[11] = "MUDSTENCILS-036.jpg";
images[12] = "MUDSTENCILS-057.jpg";
images[13] = "MUDSTENCILS-064.jpg";
images[14] = "MUDSTENCILS-089.jpg";
images[15] = "P5290075.jpg";
images[16] = "P6010084.jpg";
images[17] = "P8090142.jpg";
images[18] = "P8090152.jpg";
images[19] = "P8090166.jpg";
images[20] = "P8090175.jpg";
images[21] = "P8090179.jpg";
images[22] = "P8100184.jpg";
images[23] = "P8100200.jpg";
images[24] = "P8240209.jpg";
images[25] = "P8240211.jpg";
images[26] = "P8240223.jpg";
images[27] = "P8240233.jpg";
images[28] = "P9020236.jpg";
images[29] = "P9050244.jpg";
images[30] = "P9050247.jpg";
images[31] = "P9050251.jpg";
images[32] = "P9110263.jpg";
images[33] = "P9110267.jpg";
images[34] = "P9110270.jpg";
images[35] = "P9110278.jpg";
images[36] = "P9110286.jpg";
images[37] = "P9180295.jpg";
images[38] = "P9180296.jpg";
images[39] = "P9260311.jpg";
images[40] = "P9260335.jpg";
images[41] = "P9260338.jpg";
images[42] = "P9260345.jpg";
images[43] = "100_7136.jpg";
images[44] = "harborweb2.jpg";
images[45] = "harborweb3.jpg";
images[46] = "harborweb4.jpg";
images[47] = "harborweb5.jpg";
images[48] = "harborweb6.jpg";
images[49] = "P4110282.jpg";
images[50] = "P4140314.jpg";
images[51] = "P5280005.jpg";
images[52] = "P5290052.jpg";
images[53] = "P5290060.jpg";


var autoRotate = setInterval(processNextAuto, 7000);


function initAll() {
	document.getElementById("imgText").innerHTML = captionText[0];
	document.getElementById("prevLink").onclick = processPrevious;
	document.getElementById("nextLink").onclick = processNext;
}

function processPrevious() {
	newSlide(-1);
	
	//stop and restart auto timer
	clearInterval(autoRotate);
	autoRotate = setInterval(processNextAuto, 7000);
}

function processNext() {
	newSlide(1);
	
	//stop and restart auto timer
	clearInterval(autoRotate);
	autoRotate = setInterval(processNextAuto, 7000);
	
	//preload next image
	nextimage = new Image();
   	nextimage.src = "slideshow2/" + images[currImg + 2];
}

function processNextAuto() {
	newSlide(1);
	
	//preload next image
	nextimage = new Image();
   	nextimage.src = "slideshow2/" + images[currImg + 2];
}

function newSlide(direction) {
	var imgCt = captionText.length;

	currImg = currImg + direction;
	if (currImg < 0) {
		currImg = imgCt - 1;
	}
	if (currImg == imgCt) {
		currImg = 0;
	}
	document.getElementById("slideshow").src = "slideshow2/" + images[currImg];
	document.getElementById("imgText").innerHTML = captionText[currImg];
}					