
$(document).ready(function() {
   	$('#click_comm').click(function() {
   		$('.sub_menu_comm').slideToggle('slow');
  	});
	$('#click_voor').click(function() {
		$('.sub_menu_voor').slideToggle('slow');
	});
  	$('#click_meel').click(function() {
		$('.sub_menu_meel').slideToggle('slow');
   	});
});

function coloms() {

	var info = document.getElementById('information').offsetHeight;
	var agenda = document.getElementById('agenda').offsetHeight;
	
	if (info < agenda) {
	
		document.getElementById('information').style.height=agenda+'px';
	}
	if (info > agenda) {
		
		document.getElementById('agenda').style.height=info+'px';
	}

}
