function hideHMenuItems(itemNotToHide) {
  for (j = 0; j < item_count; j++) {
    $("#hMenu_"+item_array[j]).css('visibility', 'visible');
  	if (itemNotToHide != item_array[j]) {
    	$("#hMenu_"+item_array[j]+"_ro").css('display', 'none');
    }
  }
}