function menu2on(id) {
  document.getElementById(id).style.visibility = 'visible'; 
  document.getElementById(id).style.position = 'relative'; 
}

function menu2off(id) {
  document.getElementById(id).style.visibility = 'hidden';
  document.getElementById(id).style.position = 'absolute'; 
}

