function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.jakeswiretighteners.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="">--------------- Menu --------------</option>');
document.writeln( '<option value="index.html">+ Home Page</option>');
document.writeln( '<option value="jakesinfo.html">+ Jakes Information</option>');
document.writeln( '<option value="testimonies.html">+ Testimonies</option>');
document.writeln( '<option value="demo.html">+ Demonstration</option>');
document.writeln( '<option value="dealer-distributor.html">+ U.S. Dealers/Distributors</option>');
document.writeln( '<option value="dealer-distributor-canada.html">+ Canada Dealers/Distributors</option>');
document.writeln( '<option value="contact.html">+ Contact Us</option>');
document.writeln( '<option value="sitemap.html">+ Site Map</option>');
document.writeln( '</select>');
document.writeln( '</form>');

