<!--
//******************************************************************************
// Active DHTML/CSS Menu - 2002~2007
// Great Plains Stainless Steel
// Gilles Gomez - alizesonline.com
// Chinese version
//******************************************************************************

localPath="zh/";								// Subfolder of the localized version
var subLeft=31;									// Starting left position of the submenus (horiz. version)

//******************************************************************************
//Here are the parameters of the menu bar
//
//Use as follow:
//
//	menu[nbItem]=new menuItem();
//	menu[nbItem].title="*** Title of the first item of the menu ***";
//	menu[nbItem].url0="*** http://url_of_page ***";
//	this.posLeft="*** x position of the menu ***";
//	this.width="*** width of the menu ***";
//
//	nbItem+=1;		*** Next menu Item ***
//
//	menu[nbItem]=new menuItem();
//	menu[nbItem].title="*** Title of the second item of the menu ***";
//	menu[nbItem].url0="*** http://url_of_page ***";
//	
//	menu[nbItem].item[1]="*** Title of the first line of the submenu ***";
//	menu[nbItem].url[1]="*** http://url_of_page ***";
//	menu[nbItem].family[1]="*** optional - to create several submenus ***";
//	
//	menu[nbItem].item[2]="Titel of the next line of the submenu";
//	menu[nbItem].url[2]="*** http://url_of_page ***";
//	menu[nbItem].family[2]="*** optional - to create several submenus ***";
//
//	nbItem+=1;		*** Next menu Item ***
//
//	...			*** And so on till the end of the menu ***
//
//	Here we go...
//
//******************************************************************************

nbItem=0;

menu[nbItem]=new menuItem();
menu[nbItem].title="主页";
menu[nbItem].url0=domainPath + localPath + "index.php";
menu[nbItem].posLeft=25;
menu[nbItem].width=45;

nbItem+=1;

menu[nbItem]=new menuItem();
menu[nbItem].title="关于我们";
menu[nbItem].url0=domainPath + localPath + "aboutUs.php";
menu[nbItem].posLeft=70;
menu[nbItem].width=70;

menu[nbItem].item[1]="选择巨原的理由";
menu[nbItem].url[1]=domainPath + localPath + "aboutWhyGPS.php";

menu[nbItem].item[2]="我们的员工";
menu[nbItem].url[2]=domainPath + localPath + "aboutMeetOurStaff.php";

menu[nbItem].item[3]="岗位表格";
menu[nbItem].url[3]=domainPath + localPath + "aboutOrganizational.php";

menu[nbItem].item[4]="联系我们";
menu[nbItem].url[4]=domainPath + localPath + "contact.php";

menu[nbItem].item[5]="新闻";
menu[nbItem].url[5]=domainPath + localPath + "aboutNews.php";

nbItem+=1;

menu[nbItem]=new menuItem();
menu[nbItem].title="产品目录";
menu[nbItem].url0=domainPath + localPath + "products.php";
menu[nbItem].posLeft=140;
menu[nbItem].width=70;

nbItem+=1;

menu[nbItem]=new menuItem();
menu[nbItem].title="服务";
menu[nbItem].url0=domainPath + localPath + "services.php";
menu[nbItem].posLeft=210;
menu[nbItem].width=45;

menu[nbItem].item[1]="定制库存计划";
menu[nbItem].url[1]=domainPath + localPath + "servicesCustomStockingPlan.php";

menu[nbItem].item[2]="J.I.T 货运计划";
menu[nbItem].url[2]=domainPath + localPath + "servicesJITdeliveryPlan.php";

menu[nbItem].item[3]="加工定制";
menu[nbItem].url[3]=domainPath + localPath + "servicesCustomMachining.php";

menu[nbItem].item[4]="质量测试和认证";
menu[nbItem].url[4]=domainPath + localPath + "servicesQualityControl.php";

menu[nbItem].item[5]="冶金";
menu[nbItem].url[5]=domainPath + localPath + "servicesMetallurgy.php";

nbItem+=1;

menu[nbItem]=new menuItem();
menu[nbItem].title="地理位置";
menu[nbItem].url0=domainPath + localPath + "locations.php";
menu[nbItem].posLeft=255;
menu[nbItem].width=70;

menu[nbItem].item[1]="塔尔萨, 俄克拉荷马州,美国";
menu[nbItem].url[1]=domainPath + localPath + "locationsTulsa.php";

//menu[nbItem].item[2]="珀斯，北澳大利亚";
//menu[nbItem].url[2]=domainPath + localPath + "locationsPerth.php";

menu[nbItem].item[2]="上海，中国";
menu[nbItem].url[2]=domainPath + localPath + "locationsShangai.php";

menu[nbItem].item[3]="纳尔逊，新西兰";
menu[nbItem].url[3]=domainPath + localPath + "locationsNelson.php";

nbItem+=1;

menu[nbItem]=new menuItem();
menu[nbItem].title="客户";
menu[nbItem].url0=domainPath + localPath + "clients.php";
menu[nbItem].posLeft=325;
menu[nbItem].width=45;

nbItem+=1;

menu[nbItem]=new menuItem();
menu[nbItem].title="English";
menu[nbItem].url0=domainPath + "index.php";
menu[nbItem].posLeft=370;
menu[nbItem].width=60;
//-->