$(document).ready(function() {
	var tabs = $('#tab h2');
	if (tabs.length == 3) {
		$('div[id^="tab_"]').hide();
		$('div[id^="tab_"]:first').show();
	}
	tabs.click(function() {
		tabs.removeClass('actief');
		$(this).addClass('actief');
		$('div[id^="tab_"]').hide();
		$('#tab_' + $(this).text().toLowerCase()).show();
	});
});
