function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "----- Home Page", "Home Page", "index.htm", null);
	menu.addItem("profileid", "----- Company Profile", "Company Profile ",  "profile.htm", null);
	menu.addItem("portfolioid", "----- Our Portfolio", "Our Portfolio",  null, null);
	menu.addItem("contactid", "----- Contact Us", "Contact Us",  "contact.htm", null);

	menu.addSubItem("portfolioid", "- Commercial", "Commercial",  "comm.htm", "");
	menu.addSubItem("portfolioid", "- Residential", "Residential",  "res.htm", "");
	menu.addSubItem("portfolioid", "- Offices", "Offices",  "office.htm", "");

	menu.showMenu();
}
