function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.1
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.adeptcarpentry.net/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="ProductList.htm">Product List</option>' );
document.writeln( '<option value="Flooring.htm">FLOORING</option>' );
document.writeln( '<option value="SolidHardwoodFlooring.htm">Solid Hardwood Flooring</option>' );
document.writeln( '<option value="EngineeredFlooring.htm">Engineered Flooring</option>' );
document.writeln( '<option value="LaminateFlooring.htm">Laminate Flooring</option>' );
document.writeln( '<option value="Kitchens.htm">KITCHENS</option>' );
document.writeln( '<option value="RealWoodKitchens.htm">Real Wood Kitchens</option>' );
document.writeln( '<option value="TimberEffectKitchens.htm">Timber Effect Kitchens</option>' );
document.writeln( '<option value="LaminateKitchens.htm">Laminate Kitchens</option>' );
document.writeln( '<option value="Doors.htm">DOORS</option>' );
document.writeln( '<option value="ChildrensFurniture.htm">CHILDRENS FURNITURE</option>' );
document.writeln( '<option value="Awnings.htm">AWNINGS</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

