//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("homeid", "Home", "Home",  "index.html", "");
	menu.addItem("aboutusid", "About us", "About us",  null, null);
	menu.addItem("regionid", "About our region", "About our region",  null, null);
	menu.addItem("programsid", "Our projects", "Projects and programs",  null, null);
	menu.addItem("helpid", "How you can help", "How you can help",  null, null);
    menu.addItem("groupsid", "Local groups", "Catchment and friends of groups", "localfriends.html", "");
 	menu.addItem("eventsid", "Calendar", "Events calendar", "events.html", "");
 	menu.addItem("downloadsid", "Downloads", "Newsletters and brochures", "downloads.html", "");
 	menu.addItem("educatorsid", "For Educators", "For Educators", null, null);
		
	menu.addSubItem("aboutusid", "Who we are", "About us",  "whoweare.html", "");
	menu.addSubItem("aboutusid", "Where we are", "Yule Brook Homestead",  "ybh.html", "");
	menu.addSubItem("aboutusid", "Committee", "SERCUL Committee",  "committee.html", "");
	menu.addSubItem("aboutusid", "Staff", "SERCUL Staff",  "staff.html", "");
	menu.addSubItem("aboutusid", "Funding opportunities", "Funding opportunities", "funding.html","");
	menu.addSubItem("aboutusid", "Employment opportunities", "Jobs @ SERCUL", "employment.html","");

	menu.addSubItem("regionid", "Flora", "Flora",  "flora.html", "");
	menu.addSubItem("regionid", "Fauna", "Fauna",  "fauna.html", "");
	menu.addSubItem("regionid", "Ecological issues", "Ecological issues",  "issues.html", "");
	menu.addSubItem("regionid", "Things to see and do", "Things to see and do",  "activities.html", "");
	menu.addSubItem("regionid", "Scenery photo gallery", "Scenery",  "image_gallery.html", "");
	menu.addSubItem("regionid", "Flora photo gallery", "Flora",  "flora_image_gallery.html", "");
	menu.addSubItem("regionid", "Fauna photo gallery", "Fauna",  "fauna_image_gallery.html", "");
	
	menu.addSubItem("programsid", "Phosphorus Awareness Project", "Phosphorus Awareness Project",  "pap.html", "");
	menu.addSubItem("programsid", "Catchment Education", "Catchment education for schools",  "edu.html", "");
	menu.addSubItem("programsid", "Clean Drains River Gains", "Clean Drains River Gains Campaign",  "cleandrains.html", "");
	menu.addSubItem("programsid", "Fertilise Wise", "Fertilise Wise Campaign",  "fertilise_wise.html", "");
	menu.addSubItem("programsid", "Living Streams", "Living Streams projects",  "living_streams.html", "");
	menu.addSubItem("programsid", "Water Management", "Water Management programs",  "water.html", "");
	menu.addSubItem("programsid", "Sustainable Production", "Sustainable Production Program",  "industry.html", "");
	menu.addSubItem("programsid", "Natural Diversity", "Natural Diversity Program",  "diversity.html", "");
	
	menu.addSubItem("educatorsid", "Catchment Education", "Catchment education for schools",  "edu.html", "");
 	menu.addSubItem("educatorsid", "Activities and projects", "Environmental themes",  "educurriculum.html", "");
    menu.addSubItem("educatorsid", "Incursions and excursions", "School incursions and excursions",  "incursions.html", "");
    menu.addSubItem("educatorsid", "Kits and files", "Resources available on loan",  "eduresources.html", "");
    menu.addSubItem("educatorsid", "Online resources", "Useful websites",  "websites.html", "");
    menu.addSubItem("educatorsid", "More resources", "Book list",  "books.html", "");
 	menu.addSubItem("educatorsid", "Case studies", "Case studies",  "casestudies.html", "");
    menu.addSubItem("educatorsid", "Downloads", "Downloads",  "downloads.html", "");
 
	menu.addSubItem("helpid", "In and around your home", "In and around your home",  "huchelp.html", "");
	menu.addSubItem("helpid", "In your garden", "In your garden",  "garden.html", "");
	menu.addSubItem("helpid", "In your community", "In your community",  "community.html", "");
	menu.addSubItem("helpid", "At your school", "At your school",  "school.html", "");
	menu.addSubItem("helpid", "At your business", "At your business",  "business.html", "");
    menu.addSubItem("helpid", "Corporate sponsorship", "Corporate sponsorship",  "sponsorship.html", "");
	menu.addSubItem("helpid", "Connect with nature", "Things to see and do",  "activities.html", "");
    menu.addSubItem("helpid", "Become a volunteer", "Help make a difference",  "volunteer.html", "");
  
	menu.showMenu();
}