jQuery(document).ready(function(){
	jQuery("#content.workshops .more .toelichting").hide(); //verberg de toelichtingen standaard
	jQuery("#content.workshops .more>a").click(function() {
		jQuery(this).parent().children(".toelichting").toggle();
	});
});
