function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("infoid", "Information", "Information",  null, null);
	menu.addItem("eventsid", "Events Calender", "Events Calender",  null, null);
	menu.addItem("aboutid", "About Us", "About Us",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);	
	menu.addItem("contactid", "Contact Us", "Contact Us",  null, null);
	
	menu.addSubItem("infoid", "Membership Form", "Membership Form",  "http://www.gaynet.com.au/plwha/membership_form.htm");
	menu.addSubItem("infoid", "Treatments Action Group", "Treatments Action Group",  "http://www.gaynet.com.au/plwha/TAG.htm");
	menu.addSubItem("infoid", "Statement of Purpose", "Statement of Purpose",  "http://www.gaynet.com.au/plwha/statement.htm");
	menu.addSubItem("infoid", "Home Page", "Home Page",  "http://www.gaynet.com.au/plwha/body.htm");

	menu.addSubItem("eventsid", "Events Calander", "Events Calander",  "http://www.gaynet.com.au/plwha/events_calander.htm");
	
	menu.addSubItem("aboutid", "PLWHA Committee", "PLWHA Committee",  "http://www.gaynet.com.au/plwha/committee.htm");
	menu.addSubItem("aboutid", "Publications", "Publications",  "http://www.gaynet.com.au/plwha/publications.htm");
	menu.addSubItem("aboutid", "Positive Radio", "Positive Radio",  "http://www.gaynet.com.au/plwha/radio.htm");
	menu.addSubItem("aboutid", "Speakers", "Speakers",  "http://www.gaynet.com.au/plwha/speakers.htm");
	
	
	menu.addSubItem("linksid", "Associated Groups", "Associated Groups",  "http://www.gaynet.com.au/plwha/associated_groups.htm");
	menu.addSubItem("linksid", "Positive Links", "Positive Links",  "http://www.gaynet.com.au/plwha/links.htm");
	menu.addSubItem("linksid", "PLWHA Supporters", "PLWHA Supporters",  "http://www.gaynet.com.au/plwha/supporters.htm");
	

	menu.addSubItem("contactid", "Contact Us", "Contacts Us",  "http://www.gaynet.com.au/plwha/contacts.htm");
	

	menu.showMenu();
}