

$(document).ready(function() {
    //gedeelte voor de kleine product album
	$("a#fotoThumbs").click(function() {
	    fotoNaam = $(this).attr("alt");
		fotoPathKlein = "/uploads/images_products/" + fotoNaam;
		fotoPathGroot = "/uploads/images_products_large/" + fotoNaam; 
		
		$("#pa_fotogroot").attr("src", fotoPathKlein);
		$(".pa_fotogroot a").attr("href", fotoPathGroot);
	});
	
	$("#pa_fotogroot").click(function() {
		fotoPath = $(this).attr("src");
		$('.pa_fotogroot a').lightBox();
});

$("img#tabThumbnail").click(function() {
    fotoNaam = $(this).attr("alt");
    fotoPath = "/uploads/images_products_large/" + fotoNaam;

    $("#tabFotoGroot").attr("src", fotoPath);
});
				   
});

