//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 Us", "About Us",  null, null);
	menu.addItem("eecid", "Energy-Environment-Climate", "Energy-Environment-Climate",  null, null);
	menu.addItem("govtid", "Local Government Resources", "Local Government Resources",  null, null);
	menu.addItem("commid", "Community Resources", "Community Resources",  null, null);
	menu.addItem("contactid", "Contact Us", "Contact Us", null, null);
	menu.addItem("homeid", "Home", "Home",  "http://coolcitiesde.us", "");


	menu.addSubItem("aboutid", "About Cool Cities Delaware", "About Cool Cities Delaware", "http://coolcitiesde.us/about.html", "");
	menu.addSubItem("aboutid", "Our Calendar", "Our Calendar", "http://coolcitiesde.us/calendar.html", "");
	menu.addSubItem("aboutid", "Events and Activites", "Events and Activities", "http://coolcitiesde.us/events.html", "");
	menu.addSubItem("aboutid", "Our Newsletter", "Our Newsletter", "http://coolcitiesde.us/news.html", "");
	menu.addSubItem("aboutid", "Press Coverage", "Press Coverage", "http://coolcitiesde.us/press.html", "");

	menu.addSubItem("eecid", "Energy Sustainability", "Energy Sustainability", "http://coolcitiesde.us/energy.html", "");
	menu.addSubItem("eecid", "Environmental Stewardship", "Environmental Stewardship", "http://coolcitiesde.us/environment.html", "");
	menu.addSubItem("eecid", "Climate Protection", "Climate Protection", "http://coolcitiesde.us/climate.html", "");
		
	menu.addSubItem("govtid", "Cool Cities Delaware Handbook", "Cool Cities Delaware Handbook",  "http://coolcitiesde.us/handbook.html", "");
	menu.addSubItem("govtid", "U.S. Mayors Climate Protection Agreement", "U.S. Mayors Climate Protection Agreement",  "http://coolcitiesde.us/agreement.html", "");
	menu.addSubItem("govtid", "Cool Counties", "Cool Counties",  "http://coolcitiesde.us/counties.html", "");
	menu.addSubItem("govtid", "Best Practices", "Best Practices",  "http://coolcitiesde.us/bmp.html", "");
	menu.addSubItem("govtid", "Conducting a Greenhouse Gas Emissions Inventory", "Conducting a Greenhouse Gas Emissions Inventory",  "http://coolcitiesde.us/ghg.html", "");
	menu.addSubItem("govtid", "Funding Resources", "Funding Resources",  "http://coolcitiesde.us/resources.html", "");
	menu.addSubItem("govtid", "Resource Library", "Resource Library",  "http://coolcitiesde.us/library.html", "");
	menu.addSubItem("govtid", "Earth Hour", "Earth Hour",  "http://coolcitiesde.us/earthhour.html", "");
	
	menu.addSubItem("commid", "Get Involved", "Get Involved",  "http://coolcitiesde.us/community.html", "");
	menu.addSubItem("commid", "Join Us - Volunteer", "Join Us - Volunteer",  "http://coolcitiesde.us/volunteer.html", "");
	menu.addSubItem("commid", "Sample Letters to Elected Officials", "Sample Letters to Elected Officals",  "http://coolcitiesde.us/letters.html", "");
	menu.addSubItem("commid", "Save Energy at Home", "Save Energy at Home",  "http://coolcitiesde.us/athome.html", "");
	menu.addSubItem("commid", "Earth Hour", "Earth Hour",  "http://coolcitiesde.us/earthhour.html", "");
		
	menu.addSubItem("contactid", "Contact Us", "Contact Us", "http://coolcitiesde.us/contact.html", "");
	menu.addSubItem("contactid", "Volunteer Sign-up", "Volunteer Sign-Up", "http://coolcitiesde.us/volunteer.html", "");
	

	menu.showMenu();
}