// JavaScript Document

var aLink
function WisselAfbeelding(ID) {
	
	if (ID == 2)
		{
			StartLightbox(ID)
		}
		else
		{
		runSlideShow(ID)
		setTimeout("StartLightbox(" + ID + ")", 1000)
		setTimeout("runSlideShow(" + ID + ")", 3000)

	}
}
function StartLightbox(ID)
	{
		imgTijdelijkLink = document.getElementById('idAfbeeldingLink_0').href
		document.getElementById('idAfbeeldingLink_0').href = document.getElementById('idAfbeeldingLink_' + ID).href
		document.getElementById('idAfbeeldingLink_' + ID).href = imgTijdelijkLink
	
	mainLightbox.start(document.getElementById('idAfbeeldingLink_0'))


}

function ResetNavigatie()
	{
	//Plaats de links weer terug naar origineel
	for (i = 0; i < p; i++)
		{
		elSlideshow = document.images['SlideShow_' + i]
		document.getElementById('idAfbeeldingLink_' + i).href = elSlideshow.src.replace('klein/', '')
		}
		
	}
