function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("thefarmid", "The Farm", "The Farm",  null, null);
	menu.addItem("newsid", "News", "News",  null, null);
	menu.addItem("principalid", "Principal Investigators", "Principal Investigators",  null, null);
	menu.addItem("theprojectid", "The Project", "The Project",  null, null);
	menu.addItem("resourceid", "Resources", "Resources",  null, null);

	menu.addSubItem("thefarmid", "The Farm location", "The Farm location",  "http://www.caf.wvu.edu/plsc/organic/farm/locat.htm");
	menu.addSubItem("thefarmid", "History", "History",  "http://www.caf.wvu.edu/plsc/organic/farm/history.htm");
	menu.addSubItem("thefarmid", "Soils and Site Description", "Soils and Site Description",  "http://www.caf.wvu.edu/plsc/organic/farm/soil.htm");
	menu.addSubItem("thefarmid", "Home", "Home",  "http://www.caf.wvu.edu/plsc/organic");
		
	menu.addSubItem("newsid", "Latest News ", "Latest News",  "http://www.caf.wvu.edu/plsc/organic/news/latest.htm");
	menu.addSubItem("newsid", "Archived News", "Archived News",  "http://www.caf.wvu.edu/plsc/organic/news/archive.htm");
	
	menu.addSubItem("principalid", "William Bryan agronomy", "William Bryan agronomy",  "http://www.caf.wvu.edu/plsc/organic/principal/team.htm");
	menu.addSubItem("principalid", "Linda Butler entomology", "Linda Butler entomology",  "http://www.caf.wvu.edu/faculty/lbutler/index.html");
      menu.addSubItem("principalid", "Rakesh Chandran weed science", "Rakesh Chandran weed science",  "http://www.caf.wvu.edu/plsc/organic/principal/team.htm");
	menu.addSubItem("principalid", "Gerard D'Souza agricultural economist", "Gerard D'Souza agricultural economist",  "http://www.caf.wvu.edu/gdsouzawww/");
      menu.addSubItem("principalid", "Jim Kotcon plant pathology", "Jim Kotcon plant pathology",  "http://www.caf.wvu.edu/plsc/organic/principal/team.htm");
	menu.addSubItem("principalid", "Louis McDonald soil science", "Louis McDonald soil science",  "http://www.caf.wvu.edu/plsc/organic/principal/team.htm");
	menu.addSubItem("principalid", "Sven Verlinden horticulture", "Sven Verlinden horticulture",  "http://www.caf.wvu.edu/plsc/organic/principal/team.htm");
	menu.addSubItem("principalid", "The Team", "The Team",  "http://www.caf.wvu.edu/plsc/organic/principal/team.htm");


	menu.addSubItem("theprojectid", "Mission", "Mission",  "http://www.caf.wvu.edu/plsc/organic/project/mission.htm");
	menu.addSubItem("theprojectid", "Funding", "Funding", "http://www.caf.wvu.edu/plsc/organic/project/funding.htm");
	menu.addSubItem("theprojectid", "Outreach", "Outreach",  "http://www.caf.wvu.edu/plsc/organic/project/outreach.htm");
	menu.addSubItem("theprojectid", "Research", "Research",  "http://www.caf.wvu.edu/plsc/organic/project/research.htm");
	menu.addSubItem("theprojectid", "Opportunites", "Opportunites",  "http://www.caf.wvu.edu/plsc/organic/project/opportunities.htm");


	menu.addSubItem("resourceid", "Links", "Links",  "http://www.caf.wvu.edu/plsc/organic/resources/links.htm");
	menu.addSubItem("resourceid", "Photo Gallery", "Photo Gallery",  "http://www.caf.wvu.edu/plsc/organic/resources/photos.htm");
		
	menu.showMenu();
}