function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("info", "INFO", "Service,weather,history",  null, "info.htm");
	menu.addItem("dir", "ACCOMMODATION", "Staying here", null, null);
	menu.addItem("trav", "TRAVELLING", "Staying here", null, null);
	//menu.addItem("interact", "INTERACT", "Contribute, Leave your mark, Join in",  null, null);
	menu.addItem("miscid", "OUTBACK", "Genuine Australian outback experiences",  null, null);

	menu.addSubItem("info", "HOME", "Home page starting point.",  "index.html");
	menu.addSubItem("info", "Services", "Directory of accommodation, Shopping, Transport, Communication, Medical, Tour, etc.",  "services.htm");		
        menu.addSubItem("info", "Wildflowers", "Pictures", "wildflowers.htm");
        menu.addSubItem("info", "Wildflower Shoppe", "Great shop full of farmed wildflowers for sale and museaum exhibits",  "wildflower_shoppe.htm");
        menu.addSubItem("info", "Fauna", "Kangaroos, goannas, birds etc.",  "fauna.htm");
	menu.addSubItem("info", "Maps", "Regional, Town, State",  "maps.htm");
	menu.addSubItem("info", "Picture Page", "The Rock, Flora, Forna,", "pictures.htm");
	menu.addSubItem("info", "Airport", "Pics and tech info", "airport.htm");
	menu.addSubItem("info", "Weather", "Current and forecast", "weather.htm");
	menu.addSubItem("info", "Backpacker Tips", "Coming soon", "backpacker.htm");

	menu.addSubItem("dir", "Hotel Motel", "Premier accommodation",  "motel.asp");
	menu.addSubItem("dir", "Resort", "Newest modern accommodation",  "resort.asp");
	menu.addSubItem("dir", "Booking Form", "Online for all accommodation at Hyden",  "booking_form.htm");
	menu.addSubItem("dir", "Dining", "UNDER CONSTRUCTION Restaurants Country Kitchen BakeHouse",  "dining.htm");
	menu.addSubItem("dir", "HOME", "Start page",  "http://waverock.com.au");

        menu.addSubItem("trav", "Getting Here", "Planes, Trains, Automobiles, Buses",  "getting_here.htm");
        menu.addSubItem("trav", "Airport", "Pictures and pilot info",  "airport.htm");
	menu.addSubItem("trav", "Travelling On", "Esperance, Goldfields, Albany, Pinnicals from hub Hyden",  "travel_on.htm");
	menu.addSubItem("trav", "HOME", "Start page",  "http://waverock.com.au");

	//menu.addSubItem("interact", "ChatRoom", "for visitors and country folk",  "chat.htm");
	//menu.addSubItem("interact", "Read Bulletin Board", "Read Calendar events, Lost&Found, For sale Etc.",  "disc_hyden_toc.htm");
	//menu.addSubItem("interact", "Post Message", "Have your say.",  "disc_hyden_post.htm");
    //menu.addSubItem("interact", "Search Messages", "Find threaded or categorised messages.",  "disc_hyden_srch.htm");
	//menu.addSubItem("interact", "GuestBook", "You add links to your site, email, etc",  "guestbook.htm");
	//menu.addSubItem("interact", "Site Search", ".. for any keywords in this whole web.",  "search.htm");
	//menu.addSubItem("interact", "Email Resort", "Booking Office",  "mailto:waverock@waverock.com.au");
	//menu.addSubItem("interact", "Email Hotel", "Hyden Hotel-Motel",  "mailto:hotelmotel@waverock.com.au");
	//menu.addSubItem("interact", "HOME", "Start page",  "http://waverock.com.au");

	menu.addSubItem("miscid", "Intro", "The real Australia way out west where the west was won.", "outback.htm");
	menu.addSubItem("miscid", "WildFlower Shoppe", "Exotic flowers and souvenirs", "wildflower_shoppe.htm");
	menu.addSubItem("miscid", "Wildlife Park", "Australian wildlife park in its natural outback environment.", "wildlife.htm");
	menu.addSubItem("miscid", "Lace Place", "Coming Great Australian country fabric shop", "lace.htm");
	menu.addSubItem("miscid", "Walks", "Town, Rocks, Western", "maps.htm");
	menu.addSubItem("miscid", "Tours", "Aboriginal, rock, farm, camping, astro, etc", "tours.asp");
	menu.addSubItem("miscid", "HOME", "Start page",  "http://waverock.com.au");  

	menu.showMenu();
}
