 // JavaScript Document
window.onload = initAll;

var currImg = 0;
var captionText = new Array(
	" Eva staring at the passing stars. (1 OF 32)",
	" Grandma is so proud of her beautiful baby granddaughter. (2 OF 32)",
	" Jo came all the way from California to pay Eva a visist.  Thanks Jo!(3 OF 32)",
	" Mo and Katie looking a bit cautious, but loving her anyway. (4 OF 32)",
	" Stretching from a nap after a long day of opening presents. Thank you santa for everything! (5 OF 32)",
	" Robyn playing momma and loving every minute of it. (6 OF 32)",
	" Meeting and cuddling with Tia Carol for the first time.  (7 OF 32)",
	" Our first family picture, mom, dad, and Eva. We're so happy and proud! (8 OF 32)",
	" The entire family waiting to celebrate New Years.  (9 OF 32)",
	" Like mother like daughter...oh and they do kinda look alike. (10 OF 32)",
	" Eva and grandpa enjoying the start of a brand new year.(11 OF 32)",
	" Grandma with Eva always so excited.  (12 OF 32)",
	" Eva posing for a beauty shot. (13 OF 32)",
	" Ti Ti Sara showing off those pearly whites she must be excited. (14 OF 32)",
	" Getting a relaxing bath in the kitchen sink and enjoying it. (15 OF 32)",
	" Looking beautiful for the camera. (16 OF 32)",
	" Weeeeeeee....it's so much fun being a baby!! (17 OF 32)",
	" I love grandma! (18 OF 32)",
	" Showing off my cute Valentines Day outfit.  Don't you like it? (19 OF 32)",
	" Trying to get tummy time but too entranced by the lights and music. (20 OF 32)",
	" Almost big enough to sit herself up and loving every minute of it! (21 OF 32)",
	" Ugh more pictures is momma ever going to quit? (22 OF 32)",
	" Trying hard to roll over maybe sticking the tongue out will help just a little.  (23 OF 32)",
	" Eva sitting herself up and playing like a big girl.  (24 OF 32)",
	" Cousin Leslie and Eva acting a bit shy after meeting for the first time. (25 OF 32)",
	" Another picture of Leslie and Eva. (26 OF 32)",
	" Tia Esmaralda holding Eva after doing her hair. She looks beautiful of course.(27 OF 32)",
	" Looking like a princess, what a wonderful smile baby girl. (28 OF 32)",
	" I WANT YOU! Taking a cue from Uncle Sam. (29 OF 32)",
	" Always so happy always so sweet.  How can you not love her? (30 OF 32)",
	" Grandpa Dave busted his butt to get these pictures right, so SMILE YOU TWO!  (31 of 32)",
	" What an Angel! (LAST OF 32)"
)
	

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;

	currImg = currImg + direction;
	if (currImg < 0) {
		currImg = imgCt-1;
	}
	if (currImg == imgCt) {
		currImg = 0;
	}
	document.getElementById("slideshow").src = "images/eva" + currImg + ".jpg"
	document.getElementById("imgText").innerHTML = captionText[currImg]
}
