function menu_goto( menuform )
{
    // see http://www.thesitewizard.com/archive/navigation.shtml
    // for an explanation of this script and how to use it on your
    // own site

    var baseurl = "";// = "http://" ;
    selecteditem = menuform.newurl.selectedIndex ;
    newurl = menuform.newurl.options[ selecteditem ].value ;
    if (newurl.length != 0) {
    	newurl = newurl.replace("50000feet.com/clients/reyes_holdings/","");
    	newurl = newurl.replace("www.jessicamullen.com/reyes_holdings/","");
      location.href = baseurl + newurl ;
    }
}