function showSubMenu(id) {
  for (i=2;i<10;i++) {
    $('#submenu_'+i).hide();
  }
  $(id).show();
}

