function hide(path, theDiv, theImg, hide_src, hide_alt, unhide_src, unhide_alt) {
  if (theDiv.style.display == 'none') {
    theDiv.style.display = '';
    theImg.src = path+hide_src;
    theImg.alt = hide_alt;
  } else {
    theDiv.style.display = 'none';
    theImg.src = path+unhide_src;
    theImg.alt = unhide_alt;
  }
}

