function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();

	menu.addItem("homeid", "Home/Contact          ", null,  null, null);
	menu.addItem("scienceid", "Science          ", null,  null, null);
        menu.addItem("policyid", "Policy", null,  null, null);
	menu.addItem("hobbiesid", "Hobbies", null,  null, null);

	

menu.addSubItem("homeid", "Home", null,
"/", "");

menu.addSubItem("scienceid", "Reed Research", null,  "http://people.reed.edu/~jfry/", "");
menu.addSubItem("scienceid", "Postdoc Research", null,  "http://people.reed.edu/~jfry/postdoc.html", "");
menu.addSubItem("scienceid", "PhD Research", null,  "/science/phd.html", "");
menu.addSubItem("scienceid", "Publication List", null,  "http://people.reed.edu/~jfry/publist.html", "");
menu.addSubItem("scienceid", "CV", null,  "http://people.reed.edu/~jfry/CV1.pdf", "");
menu.addSubItem("scienceid", "Previous Research", null,  "/science/prev.html", "");

menu.addSubItem("policyid", "DC environmental policy leads for scientists", null,  "/policy/DC_Science_Policy_Internships.pdf", "");
menu.addSubItem("policyid", "EESI", null,  "http://www.eesi.org", "");
menu.addSubItem("policyid", "Polling public perception of climate change", null,  "http://www.eesi.org/briefings/2006/Energy&Climate/4.20.06_Climate_Polling/4.20.06_PublicPollingClimate.htm", "");
menu.addSubItem("policyid", "Climate Change News", null,  "http://www.eesi.org/publications/Newsletters/CCNews/ccnews.htm", "");
menu.addSubItem("policyid", "Climate Change Op-Ed, 4/30/06", null,  "http://www.ourmidland.com/site/index.cfm?newsid=16558869&BRD=2289&PAG=461&dept_id=578054&rfi=8", "");




menu.addSubItem("hobbiesid", "Flying", null,  "/hobbies/flying.html", "");
menu.addSubItem("hobbiesid", "Hockey", null,  "/hobbies/hockey.html", "");
menu.addSubItem("hobbiesid", "Books", null,  "/hobbies/booklist.html", "");
menu.addSubItem("hobbiesid", "Travel & Photos", null,  "/hobbies/pictures.html", "");
	menu.showMenu();
}

