function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Home", "Home", "http://www.AndersonFence.com/");
	menu.addItem("newsid", "Related Links", "Related Links",  null, null);
	menu.addItem("freedownloadid", "Website Links", "Website Links",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	
	menu.addSubItem("webmasterid", "Home", "Home",  "http://www.AndersonFence.com/");
	menu.addSubItem("webmasterid", "Return to AndersonFence.com", "Return to AndersonFence.com",  "http://www.AndersonFence.com/");
	
	menu.addSubItem("newsid", "Merchant Metals", "Merchant Metals",  "http://www.merchantsmetals.com/");
	menu.addSubItem("newsid", "King Architectural Metals", "King Architectural Metals",  "http://www.kingmetals.com/");
	menu.addSubItem("newsid", "Himes and Star Redwood Supply, Inc.", "Himes and Star Redwood Supply, Inc.",  "http://www.redwoodsupply.com/");
	menu.addSubItem("newsid", "Elite Access Systems, Inc.", "Elite Access Systems, Inc.",  "http://www.eliteaccess.com/");
	menu.addSubItem("newsid", "Master Halco, Inc.", "Master Halco, Inc.",  "http://www.masterhalco.com/");
	menu.addSubItem("newsid", "American Fence Association", "American Fence Association",  "http://www.americanfenceassoc.org/");
	menu.addSubItem("newsid", "Fence Magazine", "Fece Magazine",  "http://www.worldfencenews.com/");
	menu.addSubItem("newsid", "Return to the AndersonFence.com Home Page", "Return to the AndersonFence.com Home Page",  "http://www.AndersonFence.com/");


	menu.addSubItem("freedownloadid", "Contact Info", "Contact Info",  "http://www.AndersonFence.com/contact.html");
	menu.addSubItem("freedownloadid", "Biography", "Biography",  "http://www.andersonfence.com/bio.html");
      menu.addSubItem("freedownloadid", "Customers", "Customers",  "http://www.AndersonFence.com/customers.htm");
	menu.addSubItem("freedownloadid", "Photo Gallery", "Photo Gallery",  "http://www.andersonfence.com/photos.htm");
      menu.addSubItem("freedownloadid", "Return to the AndersonFence.com Home Page", "Return to the AndersonFence.com Home Page",  "http://www.andersonfence.com");

	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("searchengineid", "Infoseek", "Infoseek",  "http://www.infoseek.com/");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com");
 	menu.addSubItem("searchengineid", "Return to the AndersonFence.com Home Page", "Return to the AndersonFence.com Home Page",  "http://www.andersonfence.com");


	menu.showMenu();
}