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 = 'http://www.livingwithadd.com/' ;
  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="tools/index.shtml">Tools</option>' );
document.writeln( '<option value="tools/audiocoach.shtml">ADD Audio Coach</option>' );
document.writeln( '<option value="tools/audiotapes.shtml">Audio Tapes</option>' );
document.writeln( '<option value="tools/electronic.shtml">Gadgets</option>' );
document.writeln( '<option value="tools/addplanner.shtml">ADD Planner</option>' );
document.writeln( '<option value="tools/organize.shtml">Organizing</option>' );
document.writeln( '<option value="tools/add_adhd_magazines.shtml">Magazines</option>' );
document.writeln( '<option value="tools/software.shtml">Software</option>' );
document.writeln( '<option value="videos.shtml">Video Tapes</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

