function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("hotelid", "HOTEL", "Hotel",  "hotel_en.html", null);
	menu.addItem("swimmingid", "SWIMMING", "Swimming",  "pool_en.html", null);
	menu.addItem("fitnessid", "FITNESS", "Fitness",  "fitness_en.html", null);
	menu.addItem("serviceid", "SERVICES", "Serveces",  "services_en.html", null);
	menu.addItem("restaurantid", "RESTAURANT", "Restaurant",  "restaurant_en.html", null);
	menu.addItem("partyid", "PRICES", "Parties",  "prices_en.html", null);
	menu.addItem("photoid", "PHOTOALBUM", "Photoalbum",  "photos.html", null);
	menu.addItem("aboutid", "ABOUT US", "About",  "about_en.html", null);

//	menu.addSubItem("hotelid", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/");
	

	menu.showMenu();
}