function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("companyinfoid", "COMPANY INFO", "Company Info",  null, null);
	menu.addItem("servicesid", "SERVICES", "Services",  null, null);
	menu.addItem("portfolioid", "PORTFOLIO", "Portfolio",  null, null);
	menu.addItem("clientprofilesid", "CLIENT PROFILES", "Client Profiles",  null, null);
	menu.addItem("industryinfoid", "INDUSTRY INFO", "Industry Info",  null, null);
	menu.addItem("contactusid", "CONTACT US", "Contact Us",  null, null);
	menu.addItem("Homeid", "HOME", "Home", "http://www.homepages-etc.com", "http://www.homepages-etc.com");
	
	menu.addSubItem("companyinfoid", "Our Vision", "Our Vision",  "/companyinfo/ourvision.cfm");
	menu.addSubItem("companyinfoid", "Business Model", "Business Model",  "/companyinfo/businessmodel.cfm");
	menu.addSubItem("companyinfoid", "", "",  "");

	menu.addSubItem("servicesid", "Domain Registration", "Domain Registration",  "http://domains.homepagesetc.com");
	menu.addSubItem("servicesid", "Web Development", "Web Development",  "/services/webdevelopment.cfm");
	menu.addSubItem("servicesid", "Site Maintenance", "Site Maintenance",  "/services/sitemaintenance.cfm");
	menu.addSubItem("servicesid", "Hosting Services", "Hosting Services",  "/services/hosting.cfm");
	menu.addSubItem("servicesid", "Search Engine Opt.", "Search Engine Opt.",  "/services/seo.cfm");
	menu.addSubItem("servicesid", "Home Support Services", "Home Support Services",  "/services/hss");
	menu.addSubItem("servicesid", "", "",  "");	

	menu.addSubItem("portfolioid", "Rencor Inc.", "Rencor Inc.",  "http://www.rencorinc.com/");
	menu.addSubItem("portfolioid", "Twin Cities Featherlite", "Twin Cities Featherlite",  "http://www.featherlitetrailers.com/");
	menu.addSubItem("portfolioid", "RSVP America", "RSVP America",  "http://www.rsvp-america.com/");
	menu.addSubItem("portfolioid", "The College Agency", "The College Agency",  "http://www.thecollegeagency.com/");
	menu.addSubItem("portfolioid", "Future Productions", "Future Productions",  "http://www.futureproductions.net/");
	menu.addSubItem("portfolioid", "Grill*Mor LLC", "Grill*Mor LLC",  "http://www.smokerite.com/");
	menu.addSubItem("portfolioid", "DJ Kranz Co.", "DJ Kranz Co.",  "http://www.djkranz.com/");
	menu.addSubItem("portfolioid", "Brian David Band", "Brian David Band",  "http://www.briandavidband.com/");	
	menu.addSubItem("portfolioid", "Master Mechanical", "Master Mechanical",  "http://www.mastermechanical.com/");	
	menu.addSubItem("portfolioid", "", "",  "");		

	menu.addSubItem("clientprofilesid", "Client Profiles", "Client Profiles",  "/clientprofiles");
	menu.addSubItem("clientprofilesid", "", "",  "");

	menu.addSubItem("industryinfoid", "Web Price Index", "Web Price Index",  "http://www.netb2b.com/webPriceIndex/");
	menu.addSubItem("industryinfoid", "Assoc. of Internet Prof.", "Assoc. of Internet Prof.",  "http://www.webmaster.org/");
	menu.addSubItem("industryinfoid", "ZDNet", "ZDNet",  "http://www.zdnet.com/");
	menu.addSubItem("industryinfoid", "Webmonkey", "Webmonkey",  "http://hotwired.lycos.com/webmonkey/");
	menu.addSubItem("industryinfoid", "Matt's Scrip Archive", "Matt's Script Archive",  "http://www.worldwidemart.com/scripts/");
	menu.addSubItem("industryinfoid", "Web Pages That Suck", "Web Pages That Suck",  "http://www.webpagesthatsuck.com/");
	menu.addSubItem("industryinfoid", "What is HTML?", "What is HTML?",  "/whatis/");
	menu.addSubItem("industryinfoid", "", "",  "");
	
	menu.addSubItem("contactusid", "Request Info", "Request Info",  "/contactus/requestinfo.cfm");
	menu.addSubItem("contactusid", "Client Login", "Client Login",  "/clientlogin");
	menu.addSubItem("contactusid", "Employee Login", "Employee Login",  "/timereports");
	menu.addSubItem("contactusid", "Ontime - Developer Tool", "Ontime - Developer Tool",  "http://ontime.homepages-etc.com/");
	menu.addSubItem("contactusid", "", "",  "");

	menu.showMenu();
}