	window.onload=function(){
		
		if ($('#contentzone').height()>$('#nieuwszone').height()) {
					contentzonebigger();
		}
		if ($('#contentzone').height()<$('#nieuwszone').height()) {
					nieuwszonebigger();
		}
		if ($('#nieuwsitemszone').height()>$('#activiteitenzone').height()) {
					nieuwsitemzonebigger();
		}
		if ($('#subgroepzone').height()<$('#verhaal').height()) {
					subgroepzonebigger();
		}
	};
		
	$(window).resize(function () {
		if ($('#contentzone').height()>$('#nieuwszone').height()) {
					contentzonebigger();
		}
		if ($('#contentzone').height()<$('#nieuwszone').height()) {
					nieuwszonebigger();
		}
		if ($('#nieuwsitemszone').height()>$('#activiteitenzone').height()) {
					nieuwsitemzonebigger();
		}
		if ($('#subgroepzone').height()<$('#verhaal').height()) {
					subgroepzonebigger();
		}
	});
	
	function contentzonebigger() {
		$('#nieuwszone').height($('#contentzone').height());
		$('#nieuwsitemszone').height($('#nieuwszone').height());
		$('#activiteitenzone').height($('#nieuwszone').height());
	};
	
	function nieuwszonebigger() {
		$('#contentzone').height($('#nieuwszone').height());
		$('#nieuwsitemszone').height($('#nieuwszone').height());
		$('#activiteitenzone').height($('#nieuwszone').height());
	};
	
	function nieuwsitemzonebigger() {
		$('#activiteitenzone').height($('#nieuwsitemszone').height());
	};
	function subgroepzonebigger() {
		$('#subgroepzone').height($('#verhaal').height());
	};
