function showSubmenu(id) {
  document.getElementById(id).style.visibility =  "visible"
  document.getElementById(id).style.position =  "static"
}

function hideSubmenu(id) {
  document.getElementById(id).style.visibility =  "hidden"
  document.getElementById(id).style.position =  "absolute"
}
