// Some general cool javascript stuff
$(document).ready(function() {
    $(".dropbox").show();
    $(".dropbox > ul").hide();
    $(".dropbox > button").click(function() {
        $(".dropbox > ul").slideToggle();
        if ($(this).html() == 'Bekijk alle lezingen') {
            $(this).html('Verberg alle lezingen');
        } else {
            $(this).html('Bekijk alle lezingen');
        }
    });
});