function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.hawthornevalleyfarm.org/fep/' ;
  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="fep.htm">ACTIVITIES & OFFERINGS</option>' );

document.writeln( '<option value="walks.html">Walks</option>' );
document.writeln( '<option value="KYPP.html">Know Your Place Project</option>' );
document.writeln( '<option value="interns.html">Internships</option>' );
document.writeln( '<option value="volunteering.html">Volunteering</option>' );
document.writeln( '<option value="consulting.html">Consulting</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );