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 = 'http://www.nicolestot-time.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="Parents/Kaelyn">Miss Nicole</option>' );
document.writeln( '<option value="Parents/Kaelyn">Rosie and Steve</option>' );
document.writeln( '<option value="Parents/Jessica">Robin and Mark</option>' );
document.writeln( '<option value="Parents/Ethan">Maureen and Arthur</option>' );
document.writeln( '<option value="Parents/Eleina">Anna and Dan</option>' );
document.writeln( '<option value="Parents/Audrey">Sarah and Brandon</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


