function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("home", "Home", "Startseite",  "../startseite/index.html", null);
	menu.addItem("solutions", "Lösungen", "Lösungen",  null, "../solutions/index.html");
	menu.addItem("services", "Services", "Services",  null, "../services/index.html");
	menu.addItem("referenzen", "Referenzen", "Referenzen","../referenzen/index.html",  null);
	menu.addItem("partner", "Partner", "Partner", "../partner/index.html",  null);
	menu.addItem("profil", "Profil", "Profil", "../profil/index.html",  null);
	menu.addItem("jobs", "Jobs", "Stellenangebote", "../jobs/index.html",  null);
	menu.addItem("kontakt", "Kontakt", "Kontakt", "../kontakt/index.html",  null);

	menu.addSubItem("solutions", "Supply Chain Event Management", "Supply Chain Event Management",  "../solutions/caprichain.html");
	menu.addSubItem("solutions", "Automobillogistik", "Automobillogistik",  "../solutions/autolog.html");
	menu.addSubItem("solutions", "EDI-Tools", "EDI-Tools",  "../solutions/edi_tools.html");
	menu.addSubItem("solutions", "Mautberechnung", "Mautlösung",  "../solutions/mautmore.html");
	menu.addSubItem("solutions", "Telekommunikation", "Telekommunikation",  "../solutions/telekom.html");

	menu.addSubItem("services", "Softwareentwicklung", "Softwareentwicklung",  "../services/software.html");
    menu.addSubItem("services", "Consulting", "Consulting",  "../services/consult.html");
    menu.addSubItem("services", "EDI-Outsourcing", "EDI-Outsourcing",  "../services/rzentrum.html");
//	menu.addSubItem("services", "IT-Personalvermittlung", "IT-Personalvermittlung",  "../services/it_person.html");
	menu.addSubItem("services", "IT-Projektmanagement", "IT-Projektmanagement",  "../services/it_projekt.html");

	menu.showMenu();
}