// geef nieuwsbericht evt class="actief" op basis van hash uit RSS-linkje [bijvoorbeeld 'index.php#1']  
if(location.hash) {
	var nieuws_id = 'n' + location.hash.substr(1);
	if(document.getElementById(nieuws_id)) {
		document.getElementById(nieuws_id).className = 'actief';
	}	
}
