// Script for manipulating images in galleries
function ShowHide(id, z) {
  document.getElementById(id).style.display = "block";
  document.getElementById(id).style.zIndex = z;
}