function act(atlFoto,fotoKeuze,categorie)
{
	var foto = new Array();
	var intFoto = atlFoto;
	
	/*Bepalen van de foto's - de te vervangen foto's */
	var i
	for (i=1;i<=atlFoto;i++)
	{
	foto[i] = "pics/collectie/"+categorie+"/foto0"+i+".jpg";
	}
	
	document.images.fotogroot.src = foto[fotoKeuze]
}

