$(document).ready(function(){	

	
	$(".referentie").hover(function(){
		$(this).css("cursor","pointer");									
	},function(){

	});

	$(".referentie").click(function(){
		var a = $(this).find("a");
		document.location.href = a.attr("href") + "";
	});


});
