/*
   navbar for all standard guide pages
*/

/*
   make a choosemenu box
*/

document.writeln('<div class="choosemenu">');
document.writeln('  <p><b>Choose by:</b><br>');

/*
   choose by region
*/

if ((document.location.pathname == "/") || (document.location.pathname == "/index.html")) {
    document.writeln('     Region<br>');}
  else {
    document.writeln('     <a href="index.html">Region</a><br>');};

/*
   choose by season
*/

if (document.location.pathname == "/season.html") {
    document.writeln('     Season<br>');}
  else {
    document.writeln('     <a href="season.html">Season</a><br>');};

/*
   choose by time
*/

if (document.location.pathname == "/time.html") {
    document.writeln('     Time</p>');}
  else {
    document.writeln('     <a href="time.html">Time</a></p>');};

/*
   list all trips
*/

if (document.location.pathname == "/alltrips.html") {
    document.writeln('  <p>See all trips</p>');}
  else {
    document.writeln('  <p><a href="alltrips.html">See all trips</a></p>');};

/*
   basic nav links
*/

document.writeln('  <p><a href="introduction.html">Help</a></p>');
document.writeln('  <p><a href="http://washingtonalpineclub.org/">WAC home</a></p>');
document.writeln('  </div>');
