function init_nieuwsoverzicht() {
	var nieuwsoverzicht = document.getElementById('nieuwsoverzicht');

	if (nieuwsoverzicht) {

		var trs = nieuwsoverzicht.getElementsByTagName('tr');

		for(var i = 0; i < trs.length; i++) {


			var as = trs[i].getElementsByTagName('a');

			if (as.length > 0) {
				trs[i].link = as[0].href;
				var text = as[0].innerHTML;
				var td = as[0].parentNode;

				as[0].parentNode.innerHTML = text;
			}




			trs[i].onmouseover = nieuwsoverzicht_over;
			trs[i].onmouseout = nieuwsoverzicht_out;
			trs[i].onclick = nieuwsoverzicht_click;


		}

	}

}

function nieuwsoverzicht_click() {
	document.location = this.link;
	return true;
}

function nieuwsoverzicht_over() {

	add_class_name(this, 'hover');

}

function nieuwsoverzicht_out() {

	remove_class_name(this, 'hover');

}