function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.1
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = '' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="bear.html">Select A Totem</option>' );
document.writeln( '<option value="bear.html">Bear (Aug 22 - Sep 22)</option>' );
document.writeln( '<option value="beaver.html">Beaver (Apr 20 - May 20)</option>' );
document.writeln( '<option value="crow.html">Crow (Sep 23 - Oct 22)</option>' );
document.writeln( '<option value="deer.html">Deer (May 21 - Jun 20)</option>' );
document.writeln( '<option value="falcon.html">Falcon (Mar 21 - Apr19)</option>' );
document.writeln( '<option value="goose.html">Goose (Dec 22 - Jan 19)</option>' );
document.writeln( '<option value="otter.html">Otter (Jan 20 - Feb 18)</option>' );
document.writeln( '<option value="owl.html">Owl (Nov 23 - Dec 21)</option>' );
document.writeln( '<option value="salmon.html">Salmon (Jul 22 - Aug 21)</option>' );
document.writeln( '<option value="snake.html">Snake (Oct 23 - Nov 22)</option>' );
document.writeln( '<option value="wolf.html">Wolf (Feb 19 - Mar 20)</option>' );
document.writeln( '<option value="woodpecker.html">Woodpecker (Jun 21 - Jul 21)</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
