﻿window.onload = initAll;

var currImg = 0;
var captionText = new Array(
	"BROCHURE Petersen Automotive Museum, design",
	"MAGAZINE AD Landrover, production",
	"NEWSPAPER AD Landrover, design",
	"MAGAZINE AD Fox Home Entertainment International, design",
	"MAGAZINE AD Fox Home Entertainment International, design",
	"DIRECT MAIL National Park Foundation & American Airlines, production & design ",
	"DIRECT MAIL Wells Fargo, production & design",
	"DIRECT MAIL Distinction Beauty Catalog, production & design",
	"BOOK & KIT Branes & Noble, 'How to Draw & Paint Dragons', production & design",
	"BOOK & KIT F&W, 'Dragonart Mythical Monsters: How to Draw and Paint More Fantastic Creatures', production & design",
	"BOOK Walter Foster Publishing, 'Watch Me Draw: Favorite Pets', book cover, production & design",
	"BOOK Walter Foster Publishing, 'Watch Me Draw: Favorite Pets', breakout to show interior pages, stickers, and fold down drawing pad , production & design",
	"BOOK Walter Foster Publishing, 'Draw & Color: Dinosaurs', book cover, production",
	"BOOK Walter Foster Publishing, 'Draw & Color: Dinosaurs', book interior pages, production"
)

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 = "assets/slideImg" + currImg + ".jpg";
	document.getElementById("imgText").innerHTML = captionText[currImg];
}

						