



function init_sidebar_nieuws() {

	var sidebar_nieuws = document.getElementById('sidebar_nieuws');
	
	if (sidebar_nieuws) {
		
		var ahrefs = sidebar_nieuws.getElementsByTagName('a');
		
		if (ahrefs) {
			
			var length = ahrefs.length;
			
			if (length > 0) {
				
				for (var i = (length - 1); i >= 0; i--) {
					ahrefs[i].parentNode.href = ahrefs[i].href;
					ahrefs[i].parentNode.onclick = click_sidebar_nieuws;
				}
				
			}
			
		}
		
	}
	
}

function click_sidebar_nieuws () {
	
	document.location = this.href;
	
}
