function menu_goto( menuform )
{
  var baseurl = 'http://www.curiousinkling.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="#"selected>Browse T-Shirt Categories</option>' );
document.writeln( '<option value="geektshirts.html">Geek T-Shirts</option>' );
document.writeln( '<option value="funnytshirts.html">Funny Tees</option>' );
document.writeln( '<option value="fanaticaltshirts.html">Fanatical T-Shirts</option>' );
document.writeln( '<option value="rocktshirts.html">Rock T-Shirts</option>' );
document.writeln( '<option value="chilipeppert-shirts.html">Chili Pepper Tees</option>' );
document.writeln( '<option value="graphicstshirts.html">Art Tees</option>' );
document.writeln( '<option value="hunter-s-thompson-t-shirts.html">Hunter S Thompson Shirts</option>' );
document.writeln( '<option value="rc-airplane-t-shirts/index.html">RC Airplane T-Shirts</option>' );
document.writeln( '<option value="patriotictshirts.html">Political T-Shirts</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );