//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("courseid", "Course Information", "Course Information",  null, null);
	menu.addItem("wordsid", "Words", "Words", null, null);
	menu.addItem("calendarid", "Calendar", "Calendar",  null, null);
	menu.addItem("galleryid", "Art Gallery", "Art Gallery",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);

	menu.addSubItem("courseid", "Syllabus", "Syllabus",  "syllabus.html", "");
	menu.addSubItem("courseid", "Contact Info", "Contact Info",  "contact.html", "");
	
	menu.addSubItem("calendarid", "November", "November",  "nov.html", "");
	menu.addSubItem("calendarid", "December", "December",  "dec.html", "");

	menu.addSubItem("galleryid", "Week 3", "Week 3",  "week3.html", "");
	menu.addSubItem("galleryid", "Week 4", "Week 4",  "week4.html", "");
	menu.addSubItem("galleryid", "Week 5", "Week 5",  "week5.html", "");
	menu.addSubItem("galleryid", "Week 6", "Week 6",  "week6.html", "");
	menu.addSubItem("galleryid", "Final Week", "Final Week",  "finalweek.html", "");

	menu.addSubItem("linksid", "Live Journal", "Live Journal",  "http://www.livejournal.com/community/j_as_a", "");
	menu.addSubItem("linksid", "MLA", "MLA",  "http://www.mla.org", "");
	menu.addSubItem("linksid", "Writing Center", "Writing Center", "http://www.evergreen.edu/writingcenter", "");
	menu.addSubItem("linksid", "Additional Links", "Additional Links", "links.html", "");
	menu.showMenu();
}