
  function showHide(p_sub){
    //alert('huidige classname: '+ document.getElementById(p_sub).className);
    if (document.getElementById(p_sub).className == 'invisible') {
	  //alert('toon '+ p_sub);
	  document.getElementById(p_sub).className = 'submenu';
	} else {
	  //alert('hide '+ p_sub);
	  document.getElementById(p_sub).className = 'invisible';
	} 
  }
  
  function toggleBgColor(p_obj){
    l_highlightcolor = "#FFFF00";
    var style2 = p_obj.style;
    switch(p_obj.className){
	  case 'menuitemhigh': p_obj.className = 'menuitemlow'; break;
	  case 'menuitemlow': p_obj.className = 'menuitemhigh'; break;
	  case 'hoofdmenuhigh': p_obj.className = 'hoofdmenulow'; break;
	  case 'hoofdmenulow': p_obj.className = 'hoofdmenuhigh'; break;
	  default: style2.backgroundColor = style2.backgroundColor? "":l_highlightcolor;;
	}
  }