//Navigatie Hover voor menu

navHover = function() {
	var lis = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);


//Openen van een nieuw venster voor websites die buiten mijn eigen domein vallen

function doNewWindow(thisURL) {
	var thisWidth = 645;
	var thisHeight = 500;
	window.open(thisURL,"Nieuwvenster","toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + thisWidth + ",height=" + thisHeight + ",left=80,top=50,screenX=80,screenY=50,z-lock=0,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=0,");
}

