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.somethingbluesaskatoon.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="/choosingthedress.htm">The Dress - Home</option>' );
document.writeln( '<option value="/formality.htm">The Dress - Formality</option>' );
document.writeln( '<option value="/silhouette.htm">The Dress - Silhouettes</option>' );
document.writeln( '<option value="/fabric.htm">The Dress - Fabric</option>' );
document.writeln( '<option value="/neckline.htm">The Dress - Neckline</option>' );
document.writeln( '<option value="/colour.htm">The Dress - Colour</option>' );
document.writeln( '<option value="/length.htm">The Dress - Length</option>' );
document.writeln( '<option value="/veils.htm">The Dress - Veils</option>' );
document.writeln( '<option value="/bridalparty.htm">The Dress - Bridesmaids</option>' );
document.writeln( '<option value="/tips.htm">The Dress - Tips</option>' );
document.writeln( '<option value="/bridalsalons.htm">The Dress - Salons</option>' );
document.writeln( '<option value="/locationstorehours.htm">Visit Something Blue</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

