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.uky.edu/Ag/AgEcon/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}

var name = navigator.appName;
var vers = navigator.appVersion;
vers = vers.substring(0,1); // or 0,4  could return 4.5 instead of just 4


if (vers <5 && name == "Netscape")
	{ 
document.writeln('<a href="deptinfo.html">Department Info</a> | ');
document.writeln('<a href="people.html">Our People</a> | ');
document.writeln('<a href="academic.html">Degree & Class Info</a> | ');
document.writeln('<a href="research.html">Research Program</a> | <br>');
document.writeln('<a href="extension.html">Extension & Outreach</a> | ');
document.writeln('<a href="specprog.php">Projects, Programs, and Related Links</a> | ');
document.writeln('<a href="pubs.html">Publications & More</a>&nbsp;');
	}
else
	{
document.writeln('<a href="deptinfo.html" tabindex="1" accesskey="d">Department Info</a> | ');
document.writeln('<a href="people.html" tabindex="2" accesskey="p">Our People</a> | ');
document.writeln('<a href="academic.html" tabindex="3" accesskey="c">Degree & Class Info</a> | ');
document.writeln('<a href="research.html" tabindex="4" accesskey="r">Research Program</a> | <br>');
document.writeln('<a href="extension.html" tabindex="5" accesskey="e">Extension & Outreach</a> | ');
document.writeln('<a href="specprog.php" tabindex="6" accesskey="s">Projects, Programs, and Related Links</a> | ');
document.writeln('<a href="pubs.html" tabindex="7" accesskey="u">Publications & More</a> &nbsp; ');
	}