//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

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

	menu = new Menu();
	menu.addItem("advisingid", "--  Advising  --", "Advising",  null, null);
	menu.addItem("programsid", "--  Programs  --", "Concentrations and Programs",  null, null);
	menu.addItem("coursesid", "--  Courses --", "Courses",  null, null);
	menu.addItem("careersid", "--  Careers --", "Careers",  null, null);
	menu.addItem("eventsid", "--  Events --", "Events",  null, null);
	menu.addItem("projectsid", "--  Projects --", "Student Projects",  null, null);
	menu.addItem("clubsid", "--  Clubs --", "Clubs & Societies",  null, null);
	menu.addItem("linksid", "--  Links --", "Links & Resources",  null, null);
	menu.addItem("contactid", "--  Contact --", "Contact us",  null, null);

	menu.addSubItem("advisingid", "Advising FAQ Contents", "Advising FAQ Contents", "http://www.wcu.edu/as/english/advisingcontents.htm");
	menu.addSubItem("advisingid", "Advising FAQ search", "Advising FAQ search",  "http://www.wcu.edu/as/english/searchcontents.htm");
	menu.addSubItem("advisingid", "Forms and checksheets", "Forms, checksheets, documents", "http://www.wcu.edu/as/english/pages/forms.html");
	menu.addSubItem("advisingid", "Majors", "Majors in English",  "http://www.wcu.edu/as/english/pages/majors.html");
	menu.addSubItem("advisingid", "Minors", "Minors in English",  "http://www.wcu.edu/as/english/pages/minors.html");

	menu.addSubItem("programsid", "Undergraduate Majors", "Undergraduate majors", "http://www.wcu.edu/as/english/pages/majors.html");
	menu.addSubItem("programsid", "Undergraduate Minors", "Undergraduate minors", "http://www.wcu.edu/as/english/pages/minors.html");	
	menu.addSubItem("programsid", "Graduate Program", "Graduate Program",  "http://www.wcu.edu/as/english/gradengl/index.html");
	menu.addSubItem("programsid", "Freshman Composition", "Freshman Composition",  "http://www.wcu.edu/as/english/comp/index.html");
	menu.addSubItem("programsid", "English Literature", "English Literature",  "http://www.wcu.edu/as/english/lit/index.html");
	menu.addSubItem("programsid", "Professional Writing", "Professional Writing",  "http://www.wcu.edu/as/english/prowrite/index.html");
	menu.addSubItem("programsid", "Motion Picture Studies", "Motion Picture Studies",  "http://www.wcu.edu/as/english/mps/index.html");
	menu.addSubItem("programsid", "English Education", "English Education",  "http://www.wcu.edu/as/english/englished/index.html");

	menu.addSubItem("coursesid", "Graduate", "Graduate",  "http://catalog.wcu.edu/content.php?catoid=5&navoid=17");
	menu.addSubItem("coursesid", "Undergraduate", "Undergraduate",  "http://catalog.wcu.edu/content.php?catoid=4&navoid=11");
	
	menu.addSubItem("careersid", "Career Site", "Career Site",  "http://www.wcu.edu/as/english/careers/index.html");
	menu.addSubItem("careersid", "Our Alumni", "Our Alumni",  "http://www.wcu.edu/as/english/alum/index.html");
	menu.addSubItem("careersid", "Career Links", "Career Links",  "http://www.wcu.edu/as/english/pages/litlinks.html");
	menu.addSubItem("careersid", "WCU Career Center", "Career Center",  "http://careers.wcu.edu/");

	menu.addSubItem("eventsid", "Calendar", "Calendar",  "http://www.calsnet.com/english_wcu");
	menu.addSubItem("eventsid", "Literary Festival", "Literary Festival",  "http://www.wcu.edu/as/english/litfestival/index.html");
	
	menu.addSubItem("projectsid", "Inkblot", "Inkblot",  "http://www.wcu.edu/as/english/inkblot/");
	menu.addSubItem("projectsid", "Shakespearean Bibliography", "Shakespearean Bibliography",  "http://www.wcu.edu/as/english/shakespeare/index.html");
	menu.addSubItem("projectsid", "WCU History", "WCU History",  "http://www.maryadams.net/wcu_hist/");
	menu.addSubItem("projectsid", "Older projects", "older projects",  "http://www.wcu.edu/as/english/pages/publications.html");
	
	menu.addSubItem("clubsid", "Sigma Tau Delta", "English Club",  "http://www3.wcu.edu/~stdengl/index.html.html");
	menu.addSubItem("clubsid", "Creative Writing", "Creative Writing Club",  "http://www.wcu.edu/as/english/cwc/index.html");
		
	menu.addSubItem("linksid", "Writing Center", "Writing Center",  "http://www.wcu.edu/WritingCenter/");
	menu.addSubItem("linksid", "Links and Resources", "Links and Resources",  "http://www.wcu.edu/as/english/pages/litlinks.html");
	
	menu.addSubItem("contactid", "Department Head", "Dr. Elizabeth Addison",  "mailto:addison@email.wcu.edu");
	menu.addSubItem("contactid", "Graduate Director", "Dr. James Addison",  "mailto:jaddison@email.wcu.edu");
	menu.addSubItem("contactid", "Freshman Comp. Director", "Dr. Beth Huber", "mailto:bhuber@email.wcu.edu");
	menu.addSubItem("contactid", "English Education Director", "Dr. Catherine Carter", "mailto:ccarter@email.wcu.edu");
	menu.addSubItem("contactid", "Professional Writing Director", "Dr. Mary Adams", "mailto:madams@email.wcu.edu");
	menu.addSubItem("contactid", "Motion Picture Studies Director", "Dr. Elizabeth Heffelfinger", "mailto:heff@email.wcu.edu");
	menu.addSubItem("contactid", "Administrative Assistant", "Ms. Roxane Stiles", "mailto:rstiles@email.wcu.edu");
	menu.addSubItem("contactid", "webmaster", "Dr. Mary Adams", "mailto:madams@email.wcu.edu");

	menu.showMenu();
}