function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", ">>>>>>>>>>>>>>>>>>>>>>>>>>", "Choose From Menu To The Right",  null, null);
	menu.addItem("newsid", "A Site 4 U Web Design", "Browse Our Site",  null, null);
	menu.addItem("freedownloadid", "Free Downloads", "Free Downloads",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("miscid", "Clients Sites", "Check Out Our Client's Sites",  null, null);

	menu.addSubItem("webmasterid", "A Site 4 U", "Welcome",  "http://www.asite4u.net/");
	  

	menu.addSubItem("newsid", "A Site 4 U", "Welcome Page",  "http://www.asite4u.net");
	menu.addSubItem("newsid", "Price List", "Compare Our Prices",  "http://www.asite4u.net/Price.htm");
	menu.addSubItem("newsid", "Specials", "Save Money",  "http://www.asite4u.net/Spec.htm");
	menu.addSubItem("newsid", "Contact Us", "Questions?",  "http://www.asite4u.net/Cont.htm");
	menu.addSubItem("newsid", "FREE STUFF", "Save More Money",  "http://asite4u.net/Free.htm");
	

	menu.addSubItem("freedownloadid", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/");
	menu.addSubItem("freedownloadid", "Download.com", "Download.com",  "http://download.com/");
      menu.addSubItem("freedownloadid", "Jumbo", "Jumbo",  "http://www.jumbo.com/");
	menu.addSubItem("freedownloadid", "Tucows", "Tucows",  "http://tucows.com/");
      menu.addSubItem("freedownloadid", "WinFiles.com", "WinFiles.com",  "http://winfiles.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("miscid", "Grandpa Z's Stuffed Animal Farm", "Have A Party And Make A Friend",  "http://www.grandpazsstuffedanimals.com/");
       menu.addSubItem("miscid", "Investors Mortgage Corporation", "For All Your Mortgage And Real Estate Needs",  "http://www.investorsmtgcorp.com");
	menu.addSubItem("miscid", "Community Life Support", "First Aid And CPR Classes",  "http://www.asite4u.net/firstaid4life/");
	
	menu.addSubItem("miscid", "SCS Personnel Agency", "Career Opportunities",  "http://www.asite4u.net/careersbypros/");
	menu.addSubItem("miscid", "Debra's Flair 4 Hair", "A Full Service Salon",  "http://www.asite4u.net/Debras/");
	menu.addSubItem("miscid", "Suzette Art Originals", "Handpainted Art",  "http://www.asite4u.net/Suzette.htm");
        
        menu.addSubItem("miscid", "The Housekeeper", "Housekeeping Services",  "http://www.asite4u.net/Housekeeper");
        menu.addSubItem("miscid", "Morgan Tool And Die", "Custom Die Making",  "http://www.asite4u.net/Morgan/");
        menu.addSubItem("miscid", "Can Am Auto Salvage", "Using Recycled Auto Parts Saves You Money",  "http://www.asite4u.net/under.htm");
       

	menu.showMenu();
}