//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("Home", "Home", "Homepages",  null, null);
	menu.addItem("Course", "Course Info", "",  null, null);
	menu.addItem("Resources", "Resources", "Course related materials",  null, null);
	menu.addItem("Practice", "Practice", "Practice Exercises",  null, null);
	menu.addItem("Grades", "Grades", "",  null, null);
	menu.addItem("Historylinks", "History Links", "",  null, null);
	menu.addItem("Miscellaneous", "Misc.", "",  null, null);
	menu.addItem("Contact", "Make Contact", "",  null, null);

	menu.addSubItem("Home", "Mr. Van Smith's Page", "",  "index.htm");
	menu.addSubItem("Home", "Palmetto Senior", "",  "http://www.dade.k12.fl.us/palmetto/");
	
	menu.addSubItem("Course", "Description", "Read the course description",  "course_description.htm");
	menu.addSubItem("Course", "Syllabus", "",  "syllabus.htm");
	menu.addSubItem("Course", "Rubric", "",  "rubric.htm");
	menu.addSubItem("Course", "Complete Outline", "Collapsed Course Outline",  "courseoutline.htm");
	menu.addSubItem("Course", "MDCPS Calendar", "",  "calendar.htm");
	menu.addSubItem("Course", "Course Calendar", "Month by month",  "monthly_calendars.htm");
	menu.addSubItem("Course", "About Mr. Van Smith", "",  "biography.htm");
	
	menu.addSubItem("Resources", "Daily Activities", "Day-by-Day Breakdown",  "dailyactivities.htm");
	menu.addSubItem("Resources", "PowerPoint Slides", "Lecture Presentations",  "powerpoint.htm");
	menu.addSubItem("Resources", "Handouts", "In-class Handouts",  "handouts.htm");

	menu.addSubItem("Practice", "Quizzes", "Practice Quizzes",  "quizzes.htm");
	menu.addSubItem("Practice", "On-Line Textbook", "Interactive Activities",  "onlinetextbook.htm");

	menu.addSubItem("Grades", "Grading Policies", "Understand your Grade",  "GradingPolicies.htm");
	menu.addSubItem("Grades", "Student Summary", "See your Grade",  "studentgrades.htm");
	menu.addSubItem("Grades", "Class Summary", "See how the class did",  "classgrades.htm");	

	menu.addSubItem("Historylinks", "NEWS SOURCES:", "", null);
	menu.addSubItem("Historylinks", "-CNN", "", "http://www.cnn.com");
	menu.addSubItem("Historylinks", "-MSNMC", "", "http://www.msnbc.com");
	menu.addSubItem("Historylinks", "-AP", "",  "http://www.ap.org");
	menu.addSubItem("Historylinks", "PRIMARY SOURCES:", "", null);
	menu.addSubItem("Historylinks", "-The Constitution", "Full Text", "http://www.archives.gov/exhibit_hall/charters_of_freedom/constitution/constitution_transcription.html");
	menu.addSubItem("Historylinks", "-Declaration of Independence", "Full Text",  "http://www.archives.gov/exhibit_hall/charters_of_freedom/declaration/declaration_transcription.html");
	menu.addSubItem("Historylinks", "-Library of Congress", "On-line Collection", "http://www.loc.gov");
	menu.addSubItem("Historylinks", "-National Archives", "On-line Collection",  "http://www.archives.gov");
	menu.addSubItem("Historylinks", "OTHER USEFUL SITES:", "", "");	
	menu.addSubItem("Historylinks", "-UShistory.org", "Tons of Links", "http://www.ushistory.org");
	menu.addSubItem("Historylinks", "-Historyteacher.net", "See how much you know", "http://www.historyteacher.net");

	menu.addSubItem("Miscellaneous", "Games", "History Related Games",  "historygames.htm");
	menu.addSubItem("Miscellaneous", "Class Pictures", "Your Class on the Net!",  "pictures_of_your_class.htm");
	menu.addSubItem("Miscellaneous", "About This Site", "",  "about.htm");
	
	menu.addSubItem("Contact", "Student Information", "Tell me about you!",  "contactinfo.htm");
	menu.addSubItem("Contact", "Message Board", "An on-going conversation",  "mb.htm");
	menu.addSubItem("Contact", "Guestbook", "Sign the Guestbook",  "gb.htm");
	menu.addSubItem("Contact", "Chatroom", "Under Construction!!!",  "");
	menu.addSubItem("Contact", "E-mail Me", "Send E-mail to Mr. Van Smith",  "mailto:mbvansmith@cs.com");
	menu.addSubItem("Contact", "E-mail Congress", "E-mail your Congressperson",  "http://www.house.gov/writerep/");	

	menu.showMenu();
}