//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("aboutid", "Department Information", "Department Information",  null, null);
	menu.addItem("photoid", "Photos", "Photos",  null, null);
        menu.addItem("tipsid", "Safety", "Safety",  null, null);
	menu.addItem("awardid", "Awards", "Awards",  null, null);
	menu.addItem("linkid", "Links", "Links",  null, null);
	
	menu.addSubItem("aboutid", "History", "History",  "http://www.angelfire.com/pa2/Breslau5/History.html", "");
	menu.addSubItem("aboutid", "News", "News",  "http://www.angelfire.com/pa2/Breslau5/News.html", "");
        menu.addSubItem("aboutid", "Members", "Members",  "http://www.angelfire.com/pa2/Breslau5/members.html", ""); 
	menu.addSubItem("aboutid", "Monthly Responses", "Monthly Responses",  "http://www.angelfire.com/pa2/Breslau5/calls.html", "");
	menu.addSubItem("aboutid", "2004 Parade", "2004 Parade",  "http://www.angelfire.com/pa2/Breslau5/parade2004.html", "");
        menu.addSubItem("aboutid", "Chief Lasecki Memorial", "Chief Lasecki Memorial",  "http://www.angelfire.com/pa2/Breslau5/Memorial.html", "");
       
    	menu.addSubItem("photoid", "History", "History",   "http://www.angelfire.com/pa2/Breslau5/HistoryPicsGallery.html", "");
	menu.addSubItem("photoid", "Apparatus","Apparatus",  "http://www.angelfire.com/pa2/Breslau5/apparatus.html", "");
	menu.addSubItem("photoid", "Response", "Response",   "http://www.angelfire.com/pa2/Breslau5/photogallery.html", "");
	menu.addSubItem("photoid", "Miscellaneous", "Miscellaneous",  "http://www.angelfire.com/pa2/Breslau5/Miscellaneous.html", "");
	

	menu.addSubItem("tipsid", "Fire Prevention Tips", "Fire Prevention Tips",  "http://www.angelfire.com/pa2/Breslau5/firesaftey.html", "");
	menu.addSubItem("tipsid", "Summer Safety Tips", "Summer Safety Tips",  "http://www.angelfire.com/pa2/Breslau5/bbq.html", "");
	menu.addSubItem("tipsid", "Safety Survey", "Safety Survey",  "http://www.angelfire.com/pa2/Breslau5/wintsaf.html", "");

	menu.addSubItem("awardid", "Web Site Awards", "Web Site Awards",  "http://www.angelfire.com/pa2/Breslau5/Adwards.html", "");
	menu.addSubItem("awardid", "Win Our Awards", "Win Our",  "http://www.angelfire.com/pa2/Breslau5/winawards.html", "");
	


	menu.addSubItem("linkid", "Hanover Township Links", "Hanover Township Links",  "http://www.angelfire.com/pa2/Breslau5/htfd.html", "");
	menu.addSubItem("linkid", "Other Links", "Other Links",  "http://www.angelfire.com/pa2/Breslau5/links.html", "");
	

	menu.showMenu();
}
