function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Baidam.com",  null, null);
	menu.addItem("trek", "Pokhara-based Activities", "trek",  null, null);
	menu.addItem("hotels", "Accommodations", "hotels",  null, null);

	
	menu.addSubItem("homeid", "Baidam.com home page", "Baidam.com home",  "index.htm");
      	menu.addSubItem("homeid", "Map of Nepal", "Baidam.com home",  "nepal-map.htm");

	menu.addSubItem("trek", "Welcome to Pokhara", "",  "pokhara.htm");	
	menu.addSubItem("trek", "Pokhara sights & activities", "",  "pokhara2.htm");	
	menu.addSubItem("trek", "Trekking Guidelines", "",  "guidelines.htm");
	menu.addSubItem("trek", "Annapurna Trekking Circuit", "",  "annapurna.htm");


	menu.addSubItem("hotels", "Tranquility Lodge", "", "tranquility.htm");
	menu.addSubItem("hotels", "Kalpana's Guest House", "", "kalpana.htm");
		menu.addSubItem("hotels", "Sri Lanka stay", "", "lanka.htm");
	menu.addSubItem("hotels", "Contact us", "",  "contact.htm");
	
	menu.showMenu();
}
