function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);


	menu = new Menu();
        
	menu.addItem("servicesid","Services","services",null,null);
	menu.addItem("supportid","Customer Support","Customer Support",null,null);
	menu.addItem("Home","Home","Home","/../",null);
  	menu.addItem("Contact","Contact Us","Get started","/../contact",null);
	
    	menu.addSubItem("servicesid","Business Services","B2B","../services","");
	menu.addSubItem("servicesid","Business New Customer Orientation","What to expect","../newcust.htm","");
	menu.addSubItem("servicesid","Data Center Management","Sample Rooms","../datacenter/default.htm","");
	menu.addSubItem("servicesid","Website Design","Sample sites","../testsites/","");
	menu.addSubItem("servicesid","Personal Helpdesk","Tech support","../services/helpdesk.htm","");
	menu.addSubItem("servicesid","Residential PC Repair","Home","../services/windows_repair.htm","");
	menu.addSubItem("servicesid","Residential New Customer Pricing","Estimates","../cost.htm","");	

	menu.addSubItem("supportid","Contact", "contact","/../contact","");
	menu.addSubItem("supportid","Tools","Online tools","/../tools.htm","");	
	menu.addSubItem("supportid","Glossary","Understand computer terminology","/../glossary.htm","");
	menu.addSubItem("supportid","Computer Myths","Myths Busted and interesting facts","/../myths.htm","");
	menu.addSubItem("supportid","Computer Scams","Internet scams exposed","/../funstuff/scams","");
	menu.addSubItem("supportid","Choosing a computer","info to help you decide","/../choose.htm","");
	menu.addSubItem("supportid","Kids Corner","Web activities for kids!!!","/../kidscorner","");
	menu.addSubItem("supportid","Fun Stuff","Fun Stuff","/../funstuff","");
	        	
menu.showMenu();
}