$(document).ready(function() {
	showPhoto();
});

function showPhoto() {
	var sSrc;
	$('.thumb_overlay').click(function(){
		sSrc = $(this).parent('.thumb').find('img').attr('src').replace('_thumb','_normal');
		$('#foto_groot').animate({ 
				'opacity': 0.2 
			}, 200, 
			function(){
				$(this).attr('src',sSrc).animate({ 
				'opacity': 1 
			}, 400);
		});
	});	
}

