//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);

// Main Menu
	menu = new Menu();
	menu.addItem("home", " Home Page", "",  "index.html", null);
	menu.addItem("contact", " Contact Info", "",  "phone.html", null);
	menu.addItem("divisions", " Divisions", "Patrol / Detention / Judicial", null, null);
	menu.addItem("patrol", " Patrol Division", "",  null, null);
	menu.addItem("forms", " Forms & Downloads", "",  null, null);
	menu.addItem("links", " Links", "", null, null);
	menu.addItem("misc", " Miscellaneous", "",  null, null);
	menu.addItem("career", " Careers", "",  null, null);
	menu.addItem("sitemap", " Site Map", "",  "map.html", null);

// Contact Menu
	menu.addSubItem("contact", "Patrol", "",  "phone.html#patrol", "");
	menu.addSubItem("contact", "Detention Center", "",  "phone.html#detention", "");
	menu.addSubItem("contact", "Judicial", "",  "phone.html#judicial", "");

// Division Menu
	menu.addSubItem("divisions", "Command Staff", "",  "command.html", "");
	menu.addSubItem("divisions", "Patrol Division", "",  "patrol.html", "");
	menu.addSubItem("divisions", "Detention Center", "",  "detent.html", "");
	menu.addSubItem("divisions", "Judicial Division", "",  "judicial.html", "");
	menu.addSubItem("divisions", "Contact Information", "",  "phone.html", "");

// Patrol Menu
	menu.addSubItem("patrol", "Patrol Programs", "",  "patrol.html#programs", "");
	menu.addSubItem("patrol", "Dispatch", "",  "pco.html", "");
	menu.addSubItem("patrol", "Crime Prevention", "",  "crimeprevent.html", "");
	menu.addSubItem("patrol", "Survey of Services", "",  "survey.html", "_newWindow");
	menu.addSubItem("patrol", "Featured Crime", "",  "crime.html", "");
	menu.addSubItem("patrol", "Most Wanted", "",  "wanted.html", "");
	menu.addSubItem("patrol", "Civilian Finger Printing", "",  "patrol.html#finger", "");
	menu.addSubItem("patrol", "Alarm Permit Policy", "",  "alarm.html", "");
	menu.addSubItem("patrol", "Domestic Violence", "",  "domestic.html", "");
	menu.addSubItem("patrol", "Bulletin Board", "",  "forum.html", "");

// Employees Only Menu
	menu.addSubItem("forms", "Business Information Form", "",  "businessform.html", "");
	menu.addSubItem("forms", "Business Info (downloadable)", "",  "forms/business.doc", "_newWindow");
	menu.addSubItem("forms", "Alarm Permit", "",  "alarmpermit.pdf", "");
	menu.addSubItem("forms", "Drug Tip Form", "",  "cds.html", "");
	menu.addSubItem("forms", "Wallpaper", "",  "wallpaper.html", "");
	menu.addSubItem("forms", "Traffic Complaint Form", "",  "traffic.html", "");


// Links Menu
	menu.addSubItem("links", "Links to other sites", "", "other.html", "");
	menu.addSubItem("links", "MD Child Sex Offender Registry", "",  "http://www.dpscs.state.md.us/sor", "_newWindow");
	menu.addSubItem("links", "FBI Terrorist List", "",  "http://www.fbi.gov/mostwant/terrorists/fugitives.htm", "_newWindow");
	menu.addSubItem("links", "Internet Fraud Complaints", "",  "http://www.ic3.gov/", "_newWindow");
	menu.addSubItem("links", "MD Missing Persons Network", "", "http://www.marylandmissing.com/", "_newWindow");
	menu.addSubItem("links", "Amber Alert", "", "http://www.codeamber.com", "_newWindow");

// Miscellaneous Menu
	menu.addSubItem("misc", "WCSD News", "Departmental new stories",  "news.html", "");
	menu.addSubItem("misc", "WCSD History", "History of the Department",  "history.html", "");
	menu.addSubItem("misc", "Patch History", "",  "patch.html", "");
	menu.addSubItem("misc", "Millenium Badge", "",  "badge.html", "");
	menu.addSubItem("misc", "Business Resources", "",  "business.html", "");
	menu.addSubItem("misc", "Driving Directions", "",  "http://www.mapquest.com/maps/map.adp?city=hagerstown&state=MD&address=500+western+maryland+pkwy&zip=21740&country=us&zoom=7", "_newWindow");
	menu.addSubItem("misc", "Email Webmaster", "Comments about the site",  "mailto:jkeller@washco-md.net?subject=Web Site", "");

// Careers Menu
	menu.addSubItem("career", "Employment Information", "",  "employ.html", "");
	menu.addSubItem("career", "Applications", "",  "employ.html", "");
	menu.addSubItem("career", "Training Information", "",  "training.html", "");
	menu.addSubItem("career", "Affirmative Action", "",  "affirm.html", "");


	menu.showMenu();
}
