//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("webmasterid", "Home", "Home",  null, null);
	menu.addItem("newsid", "About Us", "About Us",  null, null);
	menu.addItem("freedownloadid", "Resources", "Resources",  null, null);
	menu.addItem("searchengineid", "Events", "Events",  null, null);
	menu.addItem("miscid", "Other", "Other",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home",  "index.html", "");
	
	menu.addSubItem("newsid", "Who We Are", "Who We Are",  "aboutus.htm", "");
	menu.addSubItem("newsid", "Mission Statement", "Mission Statement",  "mission.htm", "");
	menu.addSubItem("newsid", "Contact Us", "Contact Us",  "contact.htm", "");
	menu.addSubItem("newsid", "Board of Directors", "Board of Directors",  "board.htm", "");
	menu.addSubItem("newsid", "Joining the SAS", "Joining the SAS",  "join.htm", "");
	menu.addSubItem("newsid", "SAS Meetings", "SAS Meetings",  "meetings.htm", "");
	
	menu.addSubItem("freedownloadid", "Young Astronomers Group", "Young Astronomers Group",  "yaa/index.htm", "");
	menu.addSubItem("freedownloadid", "ATM", "ATM",  "atm.htm", "");
	menu.addSubItem("freedownloadid", "Newsletter", "Newsletter",  "newsletter.htm", "");
        menu.addSubItem("freedownloadid", "Equipment", "Equipment",  "equipment.htm", "");
	menu.addSubItem("freedownloadid", "Library", "Library",  "libsub.htm", "");
	menu.addSubItem("freedownloadid", "Observing Program", "Observing Program",  "obprogs.htm", "");
        menu.addSubItem("freedownloadid", "E-mailing List", "E-mailing List",  "mailinglist.htm", "");
	menu.addSubItem("freedownloadid", "Maps", "Maps",  "maps.htm", "");
	menu.addSubItem("freedownloadid", "One Stop Obsering Resource", "One Stop Observing Resource",  "observing.htm", "");

	menu.addSubItem("searchengineid", "Calendar of Events", "Calendar of Events",  "Calendar/calendar.htm", "");
	menu.addSubItem("searchengineid", "Star Parties", "Star Parties",  "starparties.htm", "");
	menu.addSubItem("searchengineid", "Past Events", "Past Events", "pastevents.htm", "");
	

	menu.addSubItem("miscid", "Star Links", "Star Links",  "links.htm", "");
	menu.addSubItem("miscid", "Member's Photo's", "Member's Photo's",  "memphoto1.htm", "");
	menu.addSubItem("miscid", "Member's Web Sites", "Member's Web Sites",  "memsites.htm", "");
        menu.addSubItem("miscid", "Help Wanted", "Help Wanted",  "help.htm", "");

	menu.showMenu();
}