//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("genid", "General", "General",  null, null);
	menu.addItem("commid", "Commercial", "Commercial",  null, null);
	menu.addItem("resid", "Residential", "Residential",  null, null);
	menu.addItem("servid", "Service and Maintenance", "Service and Maintenance",  null, null);
	menu.addItem("projid", "Prestigious Projects", "Prestigious Projects",  null, null);
	menu.addItem("cataid", "Catalogues", "Catalogues",  null, null);
	menu.addItem("linkid", "Links", "Links",  null, null);
	menu.addItem("contid", "Contact Us", "Contact Us",  null, null);
	menu.addItem("surfid", "Surf Tools", "Surf Tools",  null, null);

	menu.addSubItem("genid", "Home", "Home",  "http://www.carrier.com.hk");
	menu.addSubItem("genid", "About Our Company", "About Our Company",  "http://www.carrier.com.hk/corp/company.htm");
	menu.addSubItem("genid", "Global Corporate News", "Global Corporate News",  "http://www.global.carrier.com/news_index/0,,CLI1_DIV28_ETI63,00.html");
	menu.addSubItem("genid", "Career in Carrier", "Career in Carrier",  "http://www.carrier.com.hk/corp/career01.htm");
	menu.addSubItem("genid", "Career in Carrier HK", "Career in Carrier HK",  "http://www.carrier.com.hk/corp/career02.htm");

	menu.addSubItem("commid", "Dealer Online", "Dealer Online",  "http://www.carrier.com.hk/dealer/index.htm");
	menu.addSubItem("commid", "Commercial Products", "Commercial Products",  "http://www.carrier.com.hk/comm/commercial_products.htm");
	
	menu.addSubItem("commid", "E20-II Software", "E20-II Software",  "http://www.carrier.com.hk/E20.html");
	menu.addSubItem("commid", "Technical Bulletin Board", "Technical Bulletin Board",  "http://www.carrier.com.hk/comm/technical_bulletin.htm");
		
	menu.addSubItem("resid", "About Air Conditioning", "About Air Conditioning",  "http://www.carrier.com.hk/res/about_aircon.htm");
	menu.addSubItem("resid", "Choose a Product", "Choose a Product",  "http://www.carrier.com.hk/res/choose_room_aircon.htm");
	menu.addSubItem("resid", "Where to buy a Carrier Air-Con", "Where to buy a Carrier Air-Con",  "http://www.carrier.com.hk/res/where_to_buy.htm");
	
	menu.addSubItem("resid", "FAQs", "FAQs",  "http://www.carrier.com.hk/res/faq.htm");
	
	menu.addSubItem("servid", "Commercial", "Commercial",  "http://www.carrier.com.hk/service/commercial_service.htm");
	menu.addSubItem("servid", "Residential", "Residential",  "http://www.carrier.com.hk/res/res_warranty.htm");
	menu.addSubItem("servid", "Parts", "Parts",  "http://www.carrier.com.hk/service/parts.htm");
	menu.addSubItem("servid", "Blygold - Anti Corrosion Treatment", "Blygold - Anti Corrosion Treatment",  "http://www.carrier.com.hk/service/Blygold-Internet/Treatment.htm");
	menu.addSubItem("servid", "Newsletter", "Newsletter",  "http://www.carrier.com.hk/service/service_newsletter/homepage.htm");
	
	menu.addSubItem("projid", "Worldwide", "Worldwide",  "http://202.126.146.131/example/CaseList?application=Application&country=Country&ccode=0&status=yes&width=000&go=GO");
	menu.addSubItem("projid", "Commercial (Local)", "Commercial (Local)",  "http://www.carrier.com.hk/comm/project_highlights.htm");
	menu.addSubItem("projid", "Residential (Local)", "Residential (Local)",  "http://www.carrier.com.hk/res/res_projects.htm");

	menu.addSubItem("cataid", "Go Now!", "Go Now!",  "http://www.carrier.com.hk/catalogue/catalogue.htm");

	menu.addSubItem("linkid", "United Technologies Corporation", "United Technologies Corporation",  "http://www.utc.com/index2.htm");
	menu.addSubItem("linkid", "Carrier Corporation", "Carrier Corporation",  "http://www.carrier.com");
	menu.addSubItem("linkid", "Carrier China", "Carrier China", "http://www.carrier.com.cn/");
	menu.addSubItem("linkid", "Carrier Taiwan", "Carrier Taiwan",  "http://www.carrier.com.tw/");

	menu.addSubItem("contid", "Phone No. and Email", "Phone No. and Email",  "http://www.carrier.com.hk/corp/contact_us.htm");
		
	menu.addSubItem("surfid", "Site Map", "Site Map",  "http://www.carrier.com.hk/corp/sitemap.htm");
	menu.addSubItem("surfid", "Acrobat", "Acrobat",  "http://www.adobe.com/products/acrobat/alternate.html#505");
	menu.addSubItem("surfid", "Explorer", "Explorer",  "http://www.microsoft.com/");
	menu.showMenu();
}