// JavaScript Document
var currImg = 0;
var captionText = new Array(
	"<a href='http://www.bcfrt.com' target='_blank'>bcfrt.com</a> : Custom business website made css and flash",						
	"<a href='http://www.europlex.ca' target='_blank'>Europlex.ca</a> : Custom business website made entirely in flash.",
	"<a href='http://www.legaciesmassage.com' target='_blank'>LegaciesMassage.com</a> : Custom business website made css and flash",
	"<a href='http://www.rgfitness.ca' target='_blank'>RGFitness.ca</a> : Custom business website made with html, CSS and javaScript.",    "<a href='http://www.rocknaugust.com' target='_black'>Rock'n August</a> : Custom website made with CSS, javaScript and Flash.",
	"<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.",
	"<a href='http://coastsustainabilitytrust.com/' target='_blank'>CoastSustainabilityTrust.com</a> : Custom business website made css and flash",
	"<a href='http://www.amiha.ca' target='_blank'>Amiha.ca</a> : Custom business website made css and 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."
)

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

