function showToolbar()
{
	menu = new Menu();
	
	menu.addItem("homeid", "Home", "Home",  "index.html", null);
	menu.addItem("applicationsid", "Applications", "Screening Applications",  "screeningbucketapplications.html", null);
	menu.addItem("modelsid", "Models", "Flip Screen Models", null, null );
	menu.addItem("casestudiesid", "Case Studies", "Screening Case Studies", "screeningbucketcasestudies.html", null);
	menu.addItem("testimonialsid", "Testimonials", "Testimonials", "flipscreentestimonials.html", null);
	menu.addItem("howitworksid", "How It Works", "How It Works", "howitscreens.html", null);
	menu.addItem("beforeafterid", "Before & After", "Before & After", "steelscreenrecyclebeforeafter.html", null);
	menu.addItem("videosid", "Videos", "Videos",  "screeningbucketphotos.html", null);
	menu.addItem("companyid", "About Us", "About Us", null, null);
	menu.addItem("contactid", "Contact Us", "Contact Us",  "flipscreencontact.html", null);
	
	
	
	menu.addSubItem("modelsid", "For Excavators", "For Excavators",  "screeningbucketexcavators.html", "");
	menu.addSubItem("modelsid", "For Loaders & Backhoes", "For Loaders & Backhoes",  "screeningbucketloadersbackhoes.html", "");
	menu.addSubItem("modelsid", "For Skid Steers", "For Skid Steers",  "screeningbucketskidsteers.html", "");
	
	menu.addSubItem("companyid", "Company Information", "Company Information",  "flipscreencompany.html", "");
	menu.addSubItem("companyid", "Careers", "Careers",  "flipscreencareers.html", "");
	menu.addSubItem("companyid", "Awards", "Awards",  "flipscreenawards.html", "");
	menu.addSubItem("companyid", "News", "News",  "flipscreennews.html", "");
	menu.addSubItem("companyid", "Manufacturing", "Manufacturing",  "flipscreenmanufacturing.html", "");

	menu.showMenu();
}

