function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "HOME", "",  null, null);
	menu.addItem("newsid", "The Area", "",  null, null);
	menu.addItem("freedownloadid", "The Park", "",  null, null);
	menu.addItem("searchengineid", "Accommodation Options", "",  null, null);
	menu.addItem("fish", "Location", "",  null, null);
	menu.addItem("miscid", "Other Links", "",  null, null);

	menu.addSubItem("webmasterid", "Walkabout Palms", "",  "index.html");
	menu.addSubItem("webmasterid", "", "",  "");

	menu.addSubItem("newsid", "Townsville", "",  "http://www.townsvilleonline.com.au");
	menu.addSubItem("newsid", "Travelling Overseas", "",  "big4.html");
	menu.addSubItem("newsid", "Bookings/Enquiries", "",  "https://s28.rezrobot.com/member/dates.asp?Robot_ID=4908");
	menu.addSubItem("newsid", "", "",  "");

	menu.addSubItem("freedownloadid", "Features and Facilities", "", "features.html");
    menu.addSubItem("freedownloadid", "Big4 Membership", "",  "big4.html");
	menu.addSubItem("freedownloadid", "Bookings/Enquiries", "",  "https://s28.rezrobot.com/member/dates.asp?Robot_ID=4908");
	menu.addSubItem("freedownloadid", "", "",  "");

	menu.addSubItem("searchengineid", "Deluxe Ensuite Villa", "",  "deluxeensuitevillas.html");
	menu.addSubItem("searchengineid", "Family Ensuite Villa", "",  "familyensuitevillas.html");
	menu.addSubItem("searchengineid", "One Bedroom Ensuite Villa", "",  "onebedroomesuitevillas.html");
	menu.addSubItem("searchengineid", "Studio Ensuite Villa", "",  "studioensuitevillas.html");
	menu.addSubItem("searchengineid", "Double Ensuite Villa", "",  "doubleensuitevillas.html");
	menu.addSubItem("searchengineid", "Bunkhouse Rooms", "",  "bunkhouserooms.html");
	menu.addSubItem("searchengineid", "Ensuite Sites", "",  "ensuitesites.html");
	menu.addSubItem("searchengineid", "Powered Sites", "",  "poweredsite.html");
	menu.addSubItem("searchengineid", "Unpowered Sites", "",  "unpoweredsite.html");
	menu.addSubItem("searchengineid", "Bookings/Enquiries", "",  "https://s28.rezrobot.com/member/dates.asp?Robot_ID=4908");
	menu.addSubItem("searchengineid", "", "",  "");
	menu.addSubItem("searchengineid", "Magnetic Island Accommodation", "",  "magnetic-island.html");
	menu.addSubItem("searchengineid", "", "",  "");


	menu.addSubItem("fish", "Location Map", "",  "location.html");
	menu.addSubItem("fish", "Bookings/Enquiries", "",  "https://s28.rezrobot.com/member/dates.asp?Robot_ID=4908");
	menu.addSubItem("fish", "", "",  "");

	menu.addSubItem("miscid", "Big4 Holiday Parks", "",  "http://www.big4.com.au");
	menu.addSubItem("miscid", "Q-Parks", "",  "http://www.qparks.asn.au");
	menu.addSubItem("miscid", "Visit Townsville", "",  "http://www.townsvilleonline.com.au");
	menu.addSubItem("miscid", "Magnetic Island Accommodation", "",  "magnetic-island.html");
	menu.addSubItem("miscid", "Bookings/Enquiries", "",  "https://s28.rezrobot.com/member/dates.asp?Robot_ID=4908");
	menu.addSubItem("miscid", "", "",  "");

	menu.showMenu();
}