//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home",  "index.html", null);
	menu.addItem("researchid", "Research", "Research",  null, null);
	menu.addItem("publicationid", "Publications", "Publications",  "publications.html", null);
	menu.addItem("peopleid", "People", "People",  "people.html", null);
	menu.addItem("linksid", "Links", "Links",  "links.html", null);
	menu.addItem("contactid", "Contact", "Contact", "contact.html", null);
	menu.addItem("internatlid", "Internal", "Internal", "http://cohmetrix.memphis.edu/cohmetrixpr/login.htm", "_blank");
	

	menu.addSubItem("researchid", "About research", "About research", "research.html","");
	menu.addSubItem("researchid", "Readability Formulas", "Readability Formulas",  "readability.html", "");
	menu.addSubItem("researchid", "Cohmetrix & Coh-Git", "Coh-Metrix & Coh-Git",  "metgit.html", "");
	menu.addSubItem("researchid", "Methods", "Methods",  "methods.html", "");
	menu.addSubItem("researchid", "Timeline", "Timeline",  "timeline.html", "");
//	menu.addSubItem("researchid", "Web Monkey", "Web Monkey",  "http://www.webmonkey.com/", "_blank");

/*	menu.addSubItem("newsid", "CNN", "CNN",  "http://www.cnn.com", "");
	menu.addSubItem("newsid", "ABC News", "ABC News",  "http://www.abcnews.com", "");
	menu.addSubItem("newsid", "MSNBC", "MSNBC",  "http://www.msnbc.com", "");
	menu.addSubItem("newsid", "CBS news", "CBS News",  "http://www.cbsnews.com", "");
	menu.addSubItem("newsid", "News.com", "News.com",  "http://news.com", "");
	menu.addSubItem("newsid", "Wired News", "Wired News",  "http://www.wired.com", "");
	menu.addSubItem("newsid", "TechWeb", "TechWeb",  "http://www.techweb.com", "");

	menu.addSubItem("freedownloadid", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/", "");
	menu.addSubItem("freedownloadid", "Download.com", "Download.com",  "http://download.com/", "");
	menu.addSubItem("freedownloadid", "Tucows", "Tucows",  "http://tucows.com/", "");

	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/", "");
	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/", "");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com", "");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com", "");

	menu.addSubItem("miscid", "Cnet", "Cnet",  "http://www.cnet.com/", "");
	menu.addSubItem("miscid", "RealAudio", "RealAudio",  "http://www.realaudio.com/", "");
	menu.addSubItem("miscid", "MP3.com", "MP3.com",  "http://www.mp3.com/", "");
*/
	menu.showMenu();
}