window.onload = initAll;

var curImg=0;
var captionText = new Array("Jason Levan and two cuties.", "BT Gilligan wearing his graduation robes.", "BT in his Masters robes", "Allison Baronio and Kayla Bryant in accolyte robes.",
							"Graduation cake.", "Close up of cake.", "BT, Alyssa Lynn and Jan Foor Foister.", "BT trying to devour cake with one gigantic bite.",
							"Jane Bohn, Carol Green, Amanda Gilligan, Jan Foor Foister, Kris Levan, Vada Boback, Bethany Boback, Sandra and John Carson.",
							"Nelson	Bryant, Ann Bryant, Earl Bryant, Rhonda Bryant, Donna Baronio, Vada Boback, Mary Gallo, Marge Cowden, Bert Wiegmann, Jeanne and Jr. Stroud",
							"Jason Levan, BT, Amanda Gilligan, Jane Bohn, Sam and Olivia Gilligan", "Kris Levan, Jan Foor Foister, BT, Brittany Nicole Riley and Bethany Boback",
							"BT, Sam and Mr. Mears.");
	
function initAll() {
	document.getElementById("imgText").innerHTML = captionText[0];
	document.getElementById("prevLink").onclick = processPrevious;
	document.getElementById("nextLink").onclick = processNext;
}

function processPrevious() {
	newSlide(-1);
}

function processNext() {
	newSlide(1);
}

function newSlide(direction) {
	var imgCt = captionText.length;
	curImg = curImg + direction;
	
	if(curImg < 0) {
	curImg = imgCt-1;
	}
	
	if(curImg == imgCt) {
	curImg = 0;
	}
	
	document.getElementById("slideshow").src = "images/slideshow/slideImg" + curImg + ".jpg";
	document.getElementById("imgText").innerHTML = captionText[curImg];
}

/*var pgimages = ['images/slideshow/IMG_0.jpg', 'images/slideshow/IMG_1.jpg', 'images/slideshow/IMG_2.jpg', 'images/slideshow/IMG_3.jpg',
'images/slideshow/IMG_4.jpg', 'images/slideshow/IMG_5.jpg', 'images/slideshow/IMG_6.jpg', 'images/slideshow/IMG_7.jpg', 'images/slideshow/IMG_7.jpg', 
'images/slideshow/IMG_8.jpg', 'images/slideshow/IMG_9.jpg', 'images/slideshow/IMG_10.jpg', 'images/slideshow/IMG_11.jpg', 'images/slideshow/IMG_12.jpg','images/slideshow/IMG_13.jpg',
'images/slideshow/IMG_14.jpg','images/slideshow/IMG_15.jpg','images/slideshow/IMG_16.jpg''images/slideshow/IMG_17.jpg',, 'images/slideshow/IMG_18.jpg', 'images/slideshow/IMG_19.jpg'];

function nextpgimage() {
    var img = document.getElementById("pgimage");
    var imgname = img.name.split("_");
    var index = imgname[1];
    if (index == pgimages.length - 1) {
        index = 0;
    } else {
        index++;
    }
    img.src = pgimages[index];
    img.name = "image_" + index;
}

function prevpgimage() {
    var img = document.getElementById("pgimage");
    var imgname = img.name.split("_");
    var index = imgname[1];
    if (index == 0) {
        index = pgimages.length - 1;
    } else {
        index--;
    }
    img.src = pgimages[index];
    img.name = "image_" + index;
}
*/



