function showToolbar()
{ 
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("AboutLenntechid", "About Lenntech", "About Lenntech",  null, null);
	menu.addItem("Applicationsid", "Applications", "Applications",  null, null);
	menu.addItem("Technologiesid", "Technologies", "Technologies",  null, null);
	menu.addItem("Productsid", "Products", "Products",  null, null);
	menu.addItem("Watertreatmentsplantid", "Water treatment plants", "Water treatment plants",  null, null);
	menu.addItem("FAQid", "FAQ", "FAQ",  "http://www.lenntech.com/lenntechfaqs.htm", null);
	menu.addItem("Libraryid", "Library", "Library",  null, null);
	menu.addItem("Emailid", "Email", "Email",  "javascript:mailMe()", null);

	menu.addSubItem("Applicationsid", "Process water", "",  "http://www.lenntech.com/process.htm");
	menu.addSubItem("Applicationsid", "Drinking water", "",  "http://www.lenntech.com/drinking-water-FAQ.htm");
	menu.addSubItem("Applicationsid", "Irrigation", "",  "http://www.lenntech.com/Irrigation/Irrigation-water-quality.htm");
	menu.addSubItem("Applicationsid", "Disinfection", "",  "http://www.lenntech.com/disinfection.htm");
	menu.addSubItem("Applicationsid", "Waste water", "",  "http://www.lenntech.com/waste_water.htm");
	
	menu.addSubItem("Technologiesid", "Clarification", "",  "http://www.lenntech.com/clarification.htm");
	menu.addSubItem("Technologiesid", "Media filtration", "",  "http://www.lenntech.com/media_filtration.htm");
	menu.addSubItem("Technologiesid", "Fine filtration", "",  "http://www.lenntech.com/http://www.lenntech.com/Replacement/sediment-filters.htm");
	menu.addSubItem("Technologiesid", "Reverse Osmosis", "",  "http://www.lenntech.com/whatisro.htm");
	menu.addSubItem("Technologiesid", "Ion exchange", "",  "http://www.lenntech.com/http://www.lenntech.com/ion_exchanger_principle.htm.htm");
	menu.addSubItem("Technologiesid", "UV", "",  "http://www.lenntech.com/will1.htm");
	menu.addSubItem("Technologiesid", "Chlorine dioxide", "",  "http://www.lenntech.com/chlorine_dioxide.htm");
	menu.addSubItem("Technologiesid", "Ozone", "",  "http://www.lenntech.com/ozone.htm");
	menu.addSubItem("Technologiesid", "Adsorption", "",  "http://www.lenntech.com/adsorption.htm");
	menu.addSubItem("Technologiesid", "EDI", "",  "http://www.lenntech.com/boiler/edi.htm");
	menu.addSubItem("Technologiesid", "Remineralisation", "",  "http://www.lenntech.com/remineralisation.htm");
	menu.addSubItem("Technologiesid", "Advanced oxidation", "",  "http://www.lenntech.com/oxidation.htm");
	menu.addSubItem("Technologiesid", "Sludge treatment", "",  "http://www.lenntech.com/sludgetreatment_general.htm");

	menu.addSubItem("Productsid", "Sand filters", "", "");
	menu.addSubItem("Productsid", "Reverse osmosis skids ", "", );
	menu.addSubItem("Productsid", "Desalination plants ", "", );
	menu.addSubItem("Productsid", "Sediment filters", "",  "http://www.lenntech.com/http://www.lenntech.com/Replacement/sediment-filters.htm");
	menu.addSubItem("Productsid", "Ozone disinfection skids", "",  "");
	menu.addSubItem("Productsid", "UV lamps", "",  "");
	menu.addSubItem("Productsid", "Chlorine dioxide generators", "",  "");
	menu.addSubItem("Productsid", "Ion exchange plants", "",  "");
	menu.addSubItem("Productsid", "EDI plants", "",  "");
	menu.addSubItem("Productsid", "Advanced oxidation units", "",  "");
	menu.addSubItem("Productsid", "filtration media", "",  "");
	menu.addSubItem("Productsid", "Membranes", "",  "");
	menu.addSubItem("Productsid", "Dosing stations", "",  "");
	menu.addSubItem("Productsid", "Chemicals", "",  "");
	menu.addSubItem("Productsid", "Measurement devices", "",  "");
	menu.addSubItem("Productsid", "Sludge treatment units", "",  "");
	menu.addSubItem("Productsid", "Complete water treatment packages", "",  "");
	
	menu.addItem("Watertreatmentsplantid", "Water treatment plants", "Water treatment plants",  null, null);

	
	menu.showMenu();
}