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