function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.1
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.ricochetfarms.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="sheep.html">Select a page</option>' );
document.writeln( '<option value="sheep.html">Registered Katahdin Sheep</option>' );
document.writeln( '<option value="available.html">Available Sheep</option>' );
document.writeln( '<option value="puppypage.html">Puppy Page</option>' );
document.writeln( '<option value="aussies.html">Champion Australian Shepherds</option>' );
document.writeln( '<option value="intro.html">About us & Contact Info</option>' );
document.writeln( '<option value="index.html">HOME</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


