$(document).ready(function(){

    $('.NieuwsBlok_wrapper').click(function() {		
         var url = $(this).find('a.meer-nieuws').attr("href");
         window.location = url;
   });
	
	
	 $('.nieuws_item').click(function() {		
         var url = $(this).find('a.meer-nieuws').attr("href");
         window.location = url;
   });
	 
	 $('.actieblok_new').click(function() {		
         var url = $(this).find('a.leesmeer').attr("href");
         window.location = url;
   });

});


