// JavaScript Document
var currImg = 0;
var captionText = new Array(
	 "RGFitness : Custom business website made with html, CSS and javaScript.",
     "<a href='http://www.gpwoodwork.com' target='_blank'>GPWoodwork.com</a> : Custom business website made entirely in flash. Incorporating 3d objects and animation to make an eye catching and easy to use site.",
     "Europlex : Custom business website made entirely in flash.",
     "<a href='http://www.cooperfloats.com' target='_blank'>Cooperfloats.com</a> : Custom business website made with html and flash navigation, galleries and intro movie.",
     "<a href='http://www.rocknaugust.com' target='_black'>Rock'n August</a> : Custom website made with CSS, javaScript and Flash.",
     "<a href='http://www.coastsustainabilitytrust.com' target='_black'>The Coast Sustainability Trust</a> : Custom website made with CSS and Flash.",
     "<a href='http://www.bcfrt.com' target='_black'>BC Forestry Revitalization Trust</a> : Custom website made with CSS and Flash.",
	 "<a href='http://www.legaciesmassage.com/index.php' target='_black'>Legacies Sports Massage</a> : Custom website made with CSS and Flash.",
	 "<a href='http://www.amiha.ca' target='_black'>Amiha</a> : Custom website made with CSS, javaScript and Flash."
)

function initAll() {
	document.getElementById("imgTextWeb").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("slideshowWeb").src = "images/slideWebImg" + currImg + ".jpg";
	document.getElementById("imgTextWeb").innerHTML = captionText[currImg];
}
