jQuery().ready(function(){
		jQuery('#agenda').accordion({
			autoHeight: true
		});
		jQuery('#gewijzigd').accordion({
			autoHeight: true
		});
		jQuery('#nieuwsbrief').accordion({
			autoHeight: true
		});	
		
		jQuery('#speeldata').accordion({
			autoHeight: false
		});	
			
	//verdwijnknop
	 $("button").click(function () {
      $("#verdwijntruc").hide("slow");
    });    


	//http://roshanbh.com.np/2008/03/expandable-collapsible-toggle-pane-jquery.html
	//toggle in balk
	//$("#gewijzigd").show();
	$(".togglebutton").click(function()
	{
		$(this).next("#balk dl").slideToggle(600);
	});
        
	
    });
    
