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 = '' ;
  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="http://marchingelite.co.uk">Select your page option</option>' );
document.writeln( '<option value="mailto:marchingelite@hotmail.co.uk">Contact Us</option>' );
document.writeln( '<option value="http://www.marchingelite.co.uk/addpictures.html">Send Us Your Pictures</option>' );
document.writeln( '<option value="http://marchingelite.spreadshirt.net">Marching Elite Shop</option>' );
document.writeln( '<option value="http://www.facebook.com/home.php?#/group.php?gid=36658527266&ref=ts">Our Facebook Group</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


