$(document).ready(function(){
	$(".agenda_met_omschrijving span").click(function(){
		if($(this).parent().parent().find(".agenda_omschrijving").is(":visible")){
			$(".agenda_omschrijving").slideUp(250);
		}else{
			$(".agenda_omschrijving").slideUp(250);
			$(this).parent().parent().find(".agenda_omschrijving").slideDown(250);
		}
	});
});
