function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);
		menu = new Menu();
	menu.addItem("homeid", "Home", "Lucas Treherne",  "index.htm", null);	
	menu.addItem("aboutid", "About Us", "About Lucas Treherne", "about.htm", null);			
	menu.addItem("estid", "Properties for Sale", "Properties for Sale by Area",  null, null);
	menu.addItem("rentid", "Properties for Rent", "Properties for Rent by Area",  null, null);		
	menu.addItem("commercialid", "Commercial Properties", "Commercial Properties in all Areas", "commercial.htm", null);
	menu.addItem("foreignid", "Overseas Properties", "Selection of Properties Abroad",  null, null);
        menu.addItem("manageid", "Property Management", "Property Management Services", null, null);  		
	menu.addItem("financeid", "Financial Services", "Mortgages, Loans & Financial Advice", null, null);
	menu.addItem("contactid", "Contact Us", "Contact Details",  "contact.htm", null);
	
        menu.addSubItem("estid", "Bargoed", "Properties for sale in Bargoed",  "bargoedest.htm");
	menu.addSubItem("estid", "Cefn Hengoed", "Properties for sale in Cefn Hengoed",  "cefnhenest.htm");
        menu.addSubItem("estid", "Hengoed", "Properties for sale in Hengoed",  "hengoedest.htm");
        menu.addSubItem("estid", "Penpedairheol", "Properties for sale in Penpedairheol",  "penpedairheolest.htm");
        menu.addSubItem("estid", "Ystrad Mynach", "Properties for sale in Ystrad mynach",  "ystradest.htm");
        menu.addSubItem("estid", "Other Areas", "Properties for sale in Other Areas",  "otherest.htm");

	menu.addSubItem("rentid", "Bargoed", "Properties for rent in Bargoed",  "bargoedren.htm");
	menu.addSubItem("rentid", "Cefn Hengoed", "Properties for rent in Cefn Hengoed",  "cefnhenren.htm");
        menu.addSubItem("rentid", "Hengoed", "Properties for rent in Hengoed",  "hengoedren.htm");
        menu.addSubItem("rentid", "Penpedairheol", "Properties for rent in Penpedairheol",  "penpedairheolren.htm");
        menu.addSubItem("rentid", "Ystrad Mynach", "Properties for rent in Ystrad mynach",  "ystradren.htm");
        menu.addSubItem("rentid", "Other Areas", "Properties for rent in Other Areas",  "otherren.htm");

        menu.addSubItem("foreignid", "1 Bed Apartments", "1 Bedroom Apartments", "1bedapartf.htm");	
	menu.addSubItem("foreignid", "2 Bed Apartments", "2 Bedroom Apartments","2bedapartf.htm");	
	menu.addSubItem("foreignid", "3 Bed Apartments", "3 Bedroom Apartments", "3bedapartf.htm");
        menu.addSubItem("foreignid", "Other Properties", "Other Properties", "otherpf.htm");

        menu.addSubItem("manageid", "Inspections", "Inspections of Tennanted properties", "inspections.htm");
        menu.addSubItem("manageid", "Rent Collection", "Rent Collection", "rentcol.htm");	
	menu.addSubItem("manageid", "Repairs & Maintenance", "Repairs & Maintenance","repandmain.htm");	
	menu.addSubItem("manageid", "Tennant Vetting", "Tennant Vetting", "tenvetting.htm");
               	
        menu.addSubItem("financeid", "Mortgages", "Mortgages", "mortgage.htm");	
	menu.addSubItem("financeid", "Loans", "Loans","finadv.htm");	
	menu.addSubItem("financeid", "Financial Advice", "Financial Advice", "finadv.htm");
 	menu.addSubItem("financeid", "Financial Enquiries", "Financial Enquiries", "finenq.htm");	                  	
	menu.showMenu();
}

