//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("Homeid", "Home", "Home",  "#");
	menu.addItem("Departmentsid", "Departments", "Departments",  null, null);
	menu.addItem("Cornerid", "Cadet's Corner", "Cadet's Corner",  null, null);
	menu.addItem("Interactiveid", "Interactive", "Interactive",  null, null);
	menu.addItem("Contactid", "Contact Us", "Contact Us",  null, null);

	
	
	menu.addSubItem("Departmentsid", "The Mission of JROTC", "The Mission of JROTC",  "#");
	menu.addSubItem("Departmentsid", "Tiger News", "Tiger News",  "#");
	menu.addSubItem("Departmentsid", "Tiger Calender", "Tiger Calender",  "#");
	menu.addSubItem("Departmentsid", "Chain of Command", "Chain of Command",  "#");
	menu.addSubItem("Departmentsid", "Cadet Creed", "Cadet Creed",  "#");
	menu.addSubItem("Departmentsid", "Photo Galleries", "Photo Galleries",  "#");
	menu.addSubItem("Departmentsid", "Awards Chart", "Awards Chart",  "#");
	menu.addSubItem("Departmentsid", "Special Teams", "Special Teams",  "#");
	menu.addSubItem("Departmentsid", "Army Instructors", "Army Instructors", "#");
	menu.addSubItem("Departmentsid", "Thank You", "Thank You", "#");
	
	menu.addSubItem("Cornerid", "Kevin Ng Speaks", "kevin Ng Speaks",  "#");
	
	menu.addSubItem("Interactiveid", "Message Board", "Message Board",  "#");
	menu.addSubItem("Interactiveid", "Polls", "Polls",  "#");
	menu.addSubItem("Interactiveid", "Cadences", "Cadences", "#");
	menu.addSubItem("Interactiveid", "Music", "Music",  "#");
	menu.addSubItem("Interactiveid", "Links", "Links",  "#");
	
	menu.addSubItem("Contactid", "Fort Hamilton HS", "Fort Hamilton HS", "#");
	menu.addSubItem("Contactid", "Web Mstr C/CPL  Velez E", " Webmstr C/CPL  Velez E",  "#");
	menu.addSubItem("Contactid", "Editor C/SGT NG Kevin", "Editor C/SGT NG Kevin",  "#");
	
	menu.showMenu();
}
