/* Menu items */

// Syntax of addMenu
//function addMenu(index, caption, url, offPic, onPic, width, hasChild)

addMenu(0, 'About Us', '#', 'about.gif', 'about_o.gif', 60, 'Y');
addMenu(1, 'Professional Services', '#', 'pss.gif', 'pss_o.gif', 138, 'Y');
addMenu(2, 'Solutions', '../solutions/solutions.html', 'solution.gif', 'solution_o.gif', 60, 'N');
addMenu(3, 'Products', '#', 'product.gif', 'product_o.gif', 58, 'Y');
addMenu(4, 'Clients', '#', 'client.gif', 'client_o.gif', 45, 'Y');
//addMenu(5, 'Clients', '../client/index.html', 'client.gif', 'client_o.gif', 45, 'N');
addMenu(5, 'News & Events', '../news/index.html', 'news.gif', 'news_o.gif', 96, 'N');
//addMenu(7, 'Partners', '../partner/index.html', 'partners.gif', 'partners_o.gif', 54, 'N');
addMenu(6, 'Career', '../careers/careers.html', 'career.gif', 'career_o.gif', 45, 'N');
addMenu(7, 'Download', '../download/download.html', 'download.gif', 'download_o.gif', 63, 'N');

/* Submenu items */
//addSubMenu(3, 1, "Mission","使命", "ehabou_mission.html","Y","Y");
// Syntax of addSubMenu
//function addSubMenu(menuIndex, subMenuIndex, caption, url)
addSubMenu(0, 0, "Company Background", "../about/company_background.html");
addSubMenu(0, 1, "Key Management Team", "../about/key_man_team.html");
addSubMenu(0, 2, "Our Philosophy", "../about/our_philosophy.html");
addSubMenu(0, 3, "The Arco-Methodology", "../about/arco_method.html");
addSubMenu(0, 4, "Our Culture", "../about/culture.html");
addSubMenu(0, 5, "Environmental Policy", "../about/environmental_policy.html");

addSubMenu(1, 0, "Outsourcing", "../professional_services/outsourcing.html");
addSubMenu(1, 1, "Website Design", "../design/web_design.html");
addSubMenu(1, 2, "Multimedia Design", "../design/multimedia_design.html");
addSubMenu(1, 3, "Consulting Services on<br />Microsoft Technologies", "../professional_services/consulting.html");

addSubMenu(3, 0, "Homegrown Solutions", "../products/homegrown_solutions.html");
addSubMenu(3, 1, "Partners", "../products/resellers.html");

addSubMenu(4, 0, "Case Studies", "../project/case.html");
addSubMenu(4, 1, "Public Sector", "../project/public.html");
addSubMenu(4, 2, "Private Sector", "../project/private.html");

