//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", "About MD", "About MD",  null, null);
	menu.addItem("council", "Council", "Council",  null, null);
	menu.addItem("commun", "Communities", "Communities",  null, null);
	menu.addItem("deptid", "Departments", "Departments",  null, null);
	menu.addItem("emergencyid", "Emergency Services", "Emergency Services",  null, null);
	menu.addItem("govtid", "Government", "Government",  null, null);
	menu.addItem("link", "Links", "Links",  null, null);
	menu.addItem("services", "Services", "Services",  null, null);
	

	menu.addSubItem("aboutid", "Home", "Home",  "http://www.mdwillowcreek.com/index.html", "");
	menu.addSubItem("aboutid", "Administration", "Administration",  "http://www.mdwillowcreek.com/html/admin.html", "");
	menu.addSubItem("aboutid", "Business Directory", "Business Directory",  "http://www.mdwillowcreek.com/html/busdir.html", "");
	menu.addSubItem("aboutid", "Code of the West", "Code of the West",  "http://www.mdwillowcreek.com/html/codewest.html", "");
	menu.addSubItem("aboutid", "Community Profile", "Community Profile",  "http://www.mdwillowcreek.com/html/community.html", "");
      	menu.addSubItem("aboutid", "Contact Us", "Contact Us", "http://www.mdwillowcreek.com/html/contact.html",  "");
	menu.addSubItem("aboutid", "Councillors", "Councillors",  "http://www.mdwillowcreek.com/html/council.html", "");
	menu.addSubItem("aboutid", "General Information", "General Information",  "http://www.mdwillowcreek.com/html/geninfo.html", "");
	menu.addSubItem("aboutid", "History", "History",  "history.html", "");

	
	menu.addSubItem("commun", "Cardston County", "Cardston County",  "http://www.cardstoncounty.com/residents/index.cfm", "");
	menu.addSubItem("commun", "Claresholm", "Claresholm",  "http://www.townofclaresholm.com", "");

	menu.addSubItem("council", "Councillors", "Councillors",  "http://www.mdwillowcreek.com/html/council.html", "");
	menu.addSubItem("council", "Council Minutes", "Council Minutes",  "http://www.mdwillowcreek.com/html/councilm.html", "");

	menu.addSubItem("deptid", "Agricultural", "Agricultural",  "http://www.mdwillowcreek.com/html/agserbrd.html", "");
	menu.addSubItem("deptid", "Assessment", "Assessment",  "http://www.mdwillowcreek.com/html/assessmenttaxes.html", "");
	menu.addSubItem("deptid", "Bylaw", "Bylaw",  "bylaw.html", "");
	menu.addSubItem("deptid", "Development", "Development",  "http://www.mdwillowcreek.com/html/Development.html", "");
	menu.addSubItem("deptid", "Disaster Services", "Disaster Services",  "http://www.mdwillowcreek.com/html/disserv.html", "");
	menu.addSubItem("deptid", "Landfill", "Landfill",  "http://www.mdwillowcreek.com/html/landfill.html", "");
	menu.addSubItem("deptid", "Public Works", "Public Works",  "http://www.mdwillowcreek.com/html/pubwrks.html", "");
	menu.addSubItem("deptid", "Special Constable", "Special Constable",  "http://www.mdwillowcreek.com/html/const.html", "");
	menu.addSubItem("deptid", "Taxation", "Taxation",  "http://www.mdwillowcreek.com/html/taxfaq.html", "");
	

	menu.addSubItem("emergencyid", "Fire Departments", "Fire Departments",  "http://www.mdwillowcreek.com/html/firechiefs.html", "");


	menu.addSubItem("link", "Gov. Canada", "Gov. Canada",  "http://canada.gc.ca/", "");
	menu.addSubItem("link", "Alberta Government", "Alberta Government",  "http://www.gov.ab.ca/", "");
	menu.addSubItem("link", "Encyclopedia", "Encyclopedia",  "http://en.wikipedia.org", "");
	menu.addSubItem("link", "Search Engines", "Search Engines",  "http://allsearchengines.com/", "");

	
	menu.addSubItem("services", "Waste Transfer", "Waste Transfer",  "http://www.mdwillowcreek.com/html/waste.html", "");
	menu.addSubItem("services", "Utilities", "Utilities",  "http://www.mdwillowcreek.com/html/utilities.html", "");


	menu.addSubItem("govtid", "Government", "Government",  "http://canada.gc.ca/", "");
	menu.addSubItem("govtid", "Alberta Government", "Alberta Government",  "http://www.gov.ab.ca/", "");




	menu.showMenu();
}