function toon_agendaitems (offset, richting) {
	if (richting == 'vorige') {
		var nieuwe_offset = parseInt(offset) - 5;
		
		if (nieuwe_offset < 0) {
			nieuwe_offset = 0;
		}
	} else {
		var nieuwe_offset = parseInt(offset) + 5;
	}
	
	jQuery('#agenda_holder').load('/ajax/sidebar_agenda.ajax.php', {offset: nieuwe_offset});
}
