function de_thumb()
{
	// webshop specific fancy image handling.
	$("a.fancyproducten").fancybox({
				'hideOnContentClick': true,
				'overlayShow': true
			});
			
	$(".fancyproducten").each(function() {

		$('img',this).each(function(){
			//console.log($(this).parent());
			var src = $(this).attr("src");
			//console.log(src);
			$(this).parent().attr({href : src.replace("_thumb", "")});

		})
	});
}
