function fbPopup() {
	var obj = document.getElementById('fb_logo');
	obj.className = 'fb fb_hover';
}

function fbPopdown() {
	var obj = document.getElementById('fb_logo');
	obj.className = 'fb';
}

function SetMenuPlanlegging() {
	var objp = document.getElementById('menu-planlegging-3');
	if (objp != null) {
	   var objpi = document.getElementById('menu-item-3279');
	   if (objpi != null) {
	      objpi.className = objpi.className + ' current-menu-item';
	   }
	}
}

function SetMenuPoeng() {
	var objp = document.getElementById('menu-poeng');
	if (objp != null) {
	   var objpi = document.getElementById('menu-item-3421');
	   if (objpi != null) {
	      objpi.className = objpi.className + ' current-menu-item';
	   }
	}
}

function SetMenuForum() {
	var objf = document.getElementById('menu-forum');
	if (objf != null) {
	   var objfi = document.getElementById('menu-item-3296');
	   if (objfi != null) {
	      objfi.className = objfi.className + ' current-menu-item';
	   }
	   var objpi = document.getElementById('menu-item-3279');
	   if (objpi != null) {
	      objpi.className = 'menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-3279';
	   }	   
	}
}

function CaddLoadEvent(func) { 
	var oldonload = window.onload; 
	if (typeof window.onload != 'function') { 
	   window.onload = func; 
	} else { 
	   window.onload = function() { 
	      if (oldonload) { 
	         oldonload(); 
	      } 
	      func(); 
	   }
	} 
}

CaddLoadEvent(SetMenuPlanlegging);
CaddLoadEvent(SetMenuPoeng);
CaddLoadEvent(SetMenuForum);
