function showToolbar()
{
	mstyle = new MenuStyle();
	mstyle.bgColor="ffcc99";
	mstyle.mainMenuBorder=0;
	mstyle.subMenuBorder=0;
	mstyle.subMenuWidth=150;
	mstyle.menuDelta = 1; // distance between mainmenu and submenu
	mstyle.clsMenuItemIE = "class=clsMenuItemIE";
	mstyle.clsMenuItemNS = "class=clsMenuItemNS";
	mstyle.bMenuStatic = 0;
	mstyle.mainMenuWidth = "100%";

	menu = new Menu(mstyle);
	menu.addItem("com", "Company", "", "../company/index.htm", "/company/index.htm");
	menu.addItem("tel", "Telecommunication", "Telecommunication", "../telecom/index.htm", null);
	menu.addItem("sol", "Solar Electric", "Solar Electric",  "../solar/index.htm", "null");
	menu.addItem("mil", "Military", "Military",  "../military/index.htm", null);
	menu.addItem("met", "Metal Fabrication", "../metalfabr/index.htm",  "../metalfabr/index.htm");
	menu.addItem("cma", "Contract Manufacturing", "../contract-manu/index.htm",  "../contract-manu/index.htm");
	menu.addItem("con", "Contact Us", "Contact Us", null, null);

	menu.addSubItem("com", "About Polar Power", "About Polar Power",  "/company/index.htm");
	menu.addSubItem("com", "Project Experience", "Project Experience",  "/project-exp/index.htm");
	menu.addSubItem("com", "Contract History", "Contract History",  "/company/contract_history.htm");
	menu.addSubItem("com", "Location", "Location",  "/company/map.htm");
	menu.addSubItem("com", "Contact Us", "Tel/By E-mail",  "/company/contactus.htm");
	
	menu.addSubItem("tel", "Telecom", "Telecom",  "/telecom/index.htm");

	menu.addSubItem("sol", "Solar Electric", "Solar Electric",  "/solar/index.htm");

	menu.addSubItem("mil", "Military Product", "Military",  "/military/index.htm");

	menu.addSubItem("con", "Tel/E-mail", "Tel/By E-mail",  "../company/contactus.htm");
	menu.addSubItem("con", "Guest Log", "Guest Log",  "../forms/guestlog.htm");	
	menu.addSubItem("con", "Location", "Location",  "../company/map.htm");
	menu.showMenu();
}