function initNav()
{
	var nav = document.getElementById("nav");
	if(nav)
	{
		var lis = nav.getElementsByTagName("li");
		for (var i=0; i<lis.length; i++)
		{
			lis[i].onmouseover = function()
			{
				for (var j=0; j<lis.length; j++)
				{
					if(lis[j].className.indexOf("active") != -1 && lis[j].className.indexOf("hide") == -1)
						lis[j].className += " hide";
				}
				this.className += " hover";
			}
			lis[i].onmouseout = function()
			{
				for (var j=0; j<lis.length; j++)
				{
					lis[j].className = lis[j].className.replace("hide", "");
				}
				this.className = this.className.replace("hover", "");
			}
		}
	}
}
if (window.addEventListener)
	window.addEventListener("load", initNav, false);
else if (window.attachEvent)
	window.attachEvent("onload", initNav);

if(jQuery(document).ready(function() {
	jQuery('.news-latest-category, .news-list-category').each(function() {
		jQuery(this).html(
			jQuery(this).html().replace(', Niet in RSS tonen', '')
		);
		jQuery(this).html(
			jQuery(this).html().replace('Niet in RSS tonen', '')
		);
	});
}));

