function pages(where) {
  document.writeln("      <div class=elements>pages:&nbsp; [ ");
  if(where != "Jodi")
    document.writeln("      <a title=\"Jodi pictures\" href=\"jodi.html\">Jodi</a> |");
  else
    document.writeln("      Jodi |");
  if(where != "Jeff")
    document.writeln("      <a title=\"Jeff pictures\" href=\"jeff.html\">Jeff</a> |");
  else
    document.writeln("      Jeff |");
  if(where != "Jay")
    document.writeln("      <a title=\"Jay pictures\" href=\"jay.html\">Jay</a> |");
  else
    document.writeln("      Jay |");
  if(where != "Family")
    document.writeln("      <a title=\"Pictures of the family\" href=\"family.html\">Family</a> |");
  else
    document.writeln("      Family |");
  if(where != "Events")
    document.writeln("      <a title=\"Pictures from various events\" href=\"events.html\">Events</a> |");
  else
    document.writeln("      Events |");
  if(where != "Neenah")
    document.writeln("      <a title=\"Pictures from Neenah\" href=\"neenah.html\">Neenah</a>");
  else
    document.writeln("      Neenah");
  document.writeln("      ]</div>");
}

