function tabblad (activeTab) {
	for (i = 1; i <= 10; i++) {
		if (document.getElementById('tab_' + i)) {
			if (i == activeTab) {
				document.getElementById('tab_' + i).className = 'select';
				document.getElementById('inhoud_' + i).className = 'showit';
			}
			
			else {
				document.getElementById('tab_' + i).className = '';
				document.getElementById('inhoud_' + i).className = 'noshow';
			}
		}
	}	
}
