var menuAct=undefined;
var subAct=undefined;
function subOver(mid){
  if(subAct!=undefined){ subOut(subAct); }  
  document.getElementById('menusubsub'+mid).style.display='block';  subAct=mid;
}

function subOut(){
  if(subAct!=undefined){ document.getElementById('menusubsub'+subAct).style.display='none';  }
  subAct=undefined;
}

function menuOver(mid){
  if(menuAct!=undefined){ menuOut(menuAct); }  
  document.getElementById('menusub'+mid).style.display='block';  menuAct=mid;
}

function menuOut(){
  if(menuAct!=undefined){ document.getElementById('menusub'+menuAct).style.display='none';  }
  menuAct=undefined;
  prodOut();
}

//prodmenu

var prodAct=undefined;
function prodOver(mid){
  if(prodAct!=undefined){ prodOut(prodAct); }  
  document.getElementById('prodgroup'+mid).style.display='block';  prodAct=mid;
}

function prodOut(){
  if(prodAct!=undefined){ document.getElementById('prodgroup'+prodAct).style.display='none';  }
  prodAct=undefined;
}