function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home and Contacts", "Home and Contacts",  null, null);
	menu.addItem("prop1id", "Hotel Management and Hotel Properties", "Hotel Management and Hotel Properties",  null, null);
	menu.addItem("prop2id", "Leases, Land, Gas Stations, NNN, Office and Apartment Buildings", "Land, Gas Stations, NNN, Office and Apartment Buildings",  null, null);
        menu.addItem("prop3id", "Joint Ventures And Notes For Sale", "Joint Ventures And Notes For Sale",  null, null);

	menu.addSubItem("homeid", "Home Page", "Home Page",  "http://a1realty.biz/index.html");
	menu.addSubItem("homeid", "Contacts", "Contacts",  "http://a1realty.biz/Contacts.htm");
	menu.addSubItem("homeid", "E-mail", "E-mail",  "mailto:Chris@a1realty.biz");
	menu.addSubItem("homeid", "", "",  "mailto:Chris@a1realty.biz");

	menu.addSubItem("prop1id", "Hotel Management Services", "Hotel Management Services",  "http://a1realty.biz/HM.html");
        menu.addSubItem("prop1id", "Up to $5,000,000", "Up to $5,000,000",  "http://a1realty.biz/upto5.htm");
        menu.addSubItem("prop1id", "5 - $10,000,000", "5 - $10,000,000",  "http://a1realty.biz/5to10.htm");
        menu.addSubItem("prop1id", "10 - $20,000,000", "10 - $20,000,000",  "http://a1realty.biz/10to20.htm");
	menu.addSubItem("prop1id", "Over $20,000,000", "Over $20,000,000",  "http://a1realty.biz/over20.htm");
	menu.addSubItem("prop1id", "Hotel Real Estate", "Hotel Real Estate",  "http://a1realty.biz/hre.htm");
        menu.addSubItem("prop1id", "Hotel Management Services", "Hotel Management Services",  "http://a1realty.biz/HM.html");
	menu.addSubItem("prop1id", "", "",  "http://a1realty.biz/hre.htm");

	menu.addSubItem("prop2id", "Properties for lease", "Properties for lease",  "http://a1realty.biz/lease.htm");
	menu.addSubItem("prop2id", "Land (Acreage)Page-1", "Land (Acreage)Page-1",  "http://a1realty.biz/land.htm");
	menu.addSubItem("prop2id", "Land (Acreage)Page-2", "Land (Acreage)Page-2",  "http://a1realty.biz/land_p2.htm");
	menu.addSubItem("prop2id", "Land (Acreage)Page-3", "Land (Acreage)Page-3",  "http://a1realty.biz/land_p3.htm");
	menu.addSubItem("prop2id", "Land (Acreage)Page-4", "Land (Acreage)Page-4",  "http://a1realty.biz/land_p4.htm");
        menu.addSubItem("prop2id", "Gas Stations Page 1", "Gas Stations Page 1",  "http://a1realty.biz/GasSta.htm");
        menu.addSubItem("prop2id", "Long-term Triple Net", "Long-term Triple Net",  "http://a1realty.biz/LongTTN.htm");
        menu.addSubItem("prop2id", "High-end Development", "High-end Development",  "http://a1realty.biz/hedp.htm");
        menu.addSubItem("prop2id", "Residential Properties", "Residential Properties",  "http://a1realty.biz/rp.htm");
        menu.addSubItem("prop2id", "Residential Properties High-end", "Residential Properties High-end",  "http://a1realty.biz/herp.htm");
	menu.addSubItem("prop2id", "Office Buildings, Office Space, Miscellaneous Opportunities, Land, and other Properties", "Office Buildings, Office Space, Miscellaneous Opportunities, Land, and other Properties",  "http://a1realty.biz/business_Opp.htm");
        menu.addSubItem("prop2id", "Apartment Buildings", "Apartment Buildings",  "http://a1realty.biz/aprt.htm");
        menu.addSubItem("prop2id", "", "",  "http://a1realty.biz/land.htm");

        menu.addSubItem("prop3id", "Joint Venture listings", "Joint Venture listings",  "http://a1realty.biz/jvp.htm");
        menu.addSubItem("prop3id", "Notes For Sale listings", "Notes For Sale listings",  "http://a1realty.biz/NFS.htm");
    
	menu.showMenu();
}