function kalender(maand,jaar) {
	$('meerinfo').innerHTML = '<p>Klik op een activiteit voor meer info.</p>';
	new Ajax.Request('includes/kalender.inc.php', { 
		method:'post', 
		postBody: 'jaar='+jaar+'&maand='+maand,
		onSuccess: function(response) {
			$('kalender_div').innerHTML = response.responseText;		
		}		
	});
}

function activiteit(dag,maand,jaar) {
	new Ajax.Request('includes/activiteit.inc.php', { 
		method:'post', 
		postBody: 'dag='+dag+'&maand='+maand+'&jaar='+jaar,
		onSuccess: function(response) {
			$('meerinfo').innerHTML = response.responseText;
			$('meerinfo').scrollTo();
		}		
	});
}