//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("aboutheading", "About CCNL", "About CCNL",  null, null);
	menu.addItem("projectheading", "Projects", "Projects",  null, null);
	menu.addItem("peopleheading", "Personnel", "Personnel",  null, null);
	menu.addItem("pubheading", "CCNL Publications", "CCNL Publications",  null, null);
	menu.addItem("mediaheading", "Media Coverage", "Media Coverage",  null, null);

	menu.addSubItem("aboutheading", "General Info", "General Info",  "generalinfo.html", "");
	menu.addSubItem("aboutheading", "Directions", "Directions",  "directions.html", "");
	
	menu.addSubItem("projectheading", "Novelty and Reward", "Novelty and Reward",  "novelty.html", "");
	menu.addSubItem("projectheading", "Hyperscanning", "Hyperscanning",  "hyperscanning.html", "");
	menu.addSubItem("projectheading", "Neuroeconomics", "Neuroeconomics",  "neuralecon.html", "");
	
	menu.addSubItem("peopleheading", "Lab Director", "Lab Director",  "labdirector.html", "");
	menu.addSubItem("peopleheading", "Faculty", "Faculty",  "faculty.html", "");
	menu.addSubItem("peopleheading", "Students", "Students",  "students.html", "");
	menu.addSubItem("peopleheading", "Staff", "Staff",  "staff.html", "");

	menu.addSubItem("pubheading", "Publications", "Publications",  "publications.html", "");	

	menu.addSubItem("mediaheading", "Print Publicity", "Print Publicity",  "printpub.html", "");
	menu.addSubItem("mediaheading", "Web Publicity", "Web Publicity",  "webpub.html", "");
	

	menu.showMenu();
}
