function bindSectoren(selector)
{
    $(selector).bind('click', function (e) {
	$(this).parent().next().toggleClass('hidden');
    });
}