$(document).ready(function(){
	$("#thumbs img").each(function(i){
		var foto = this.src.split("/");
		var fotoSrc = new Image();
		foto = foto[foto.length-1]
		fotoSrc.src = "/2twintig/images/fotos/" + foto;
		$(this).bind("click", function(){
			$("#foto_groot").fadeOut(500, function(){
				$("#foto_groot").attr({src: "/2twintig/images/fotos/" + foto}).fadeIn(500);
			});	
			$("#lightboxLink").attr({href: "/2twintig/images/fotos/lightbox/" + foto});
		});
	});
});