function switchcolor( tabel, schakel, kleur ) {
	if ( schakel ) {
		switch ( kleur ) {
			case 1:
				tabel.style.backgroundColor = '#E4E4E4'; // Muziek
				break;
			case 2:
				tabel.style.backgroundColor = '#CCCCCC'; // Podiumkunsten
				break;			
		}
	} else {
		switch ( kleur ) {
			case 1:
				tabel.style.backgroundColor = '#E4E4E4';
				break;
			case 2:
				tabel.style.backgroundColor = '#CCCCCC';
				break;
		}
	}
}