$(document).ready(function(){

	 
	$('a[rel*=facebox]').facebox();
 
	$.each($(".pasfoto"),function()
			{
			 	$(this).hide();
			});

	$(".bekijk_foto").hover(
			function()
			{
				$(this).next().show();
			},
			function()
			{
				$(this).next().hide();
	});

});
