$( document ).ready( function() {
							  
	$('.nieuwBox ul li').each( function() {
										
		var toFixLink = $(this).find('a.nextBt').attr('href');
		$(this).css('cursor', 'pointer');
		
		$(this).bind('click', function() {
									   
			window.location = toFixLink;
		
		});
		
	});	
	
});
