window.onload = initAll;

var currImg = 0;
var captionText = new Array(
	"The European Ensemble",
	"The perfect accompaniment for outdoor events",
    "The European Ensemble in a Chapel",
	"The European Ensemble at the Meyerson Symphony Center",
    "Fun on the Lake",
    "Dallas Art Gallery Derrill Osborn Auction",
	"A corporate party at the Hotel Intercontinental in Dallas",
	"A corporate party at the Hotel Intercontinental in Dallas",
	"The European Ensemble at Bass Hall",
	"The European Ensemble at the Meyerson Symphony Center",
	"With a harpist",
	"Leading the group",
	"The Ensemble performing at a party for 600 at the Hilton Hotel",
	"Merry Christmas from the European Ensemble",
	"The European Ensemble performs at the Morton H. Meyerson",
	"A violin duo",
	"Magical strings in a romantic gazebo",
    "As a trio at a Country Club event",
    "Having fun in the park.",
    "Ready for our new music!",
    "Are you ready for this!?",
    "Experience the ultimate entertainment by The European Ensemble",
    "The European Ensemble dressed for the Show",
    "Contact us for booking info--214-686-9125",
    "After shooting our new video with professional dancers",
    "Performing The Show at a fine restaurant"
)

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 = "gallery/slideImg" + currImg + ".jpg";
	document.getElementById("imgText").innerHTML = captionText[currImg];
}


