$(document).ready(function() {
	if ($('#opleidingen li.active').length == 0) {
		$('#opleidingen ul:first').show();
	} else {
		$('#opleidingen li.active').parent().show();
	}

	$('#opleidingen h2').click(function() {
		if ($(this).next('ul').css('display') == 'none') {
			$('#opleidingen ul').hide('fast');
			$(this).next('ul').toggle('fast');
		}
	});
});
