jQuery(document).ready(function(){
    $("#example").accordion();

		
		$(".uitschuif_kop").click(function() {
        $(this).next().toggle();
    }).next().hide();
	});	
	jQuery(document).ready(function(){
    $(".uitschuif_kop_open").click(function() {
        $(this).next().toggle();
    }).next().show();
	});	

