// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['关于TMI', '../cn/about/index.html',
		['Supported Browsers', null, null,
			['Win32 Browsers', null, null, 
				['Internet Explorer 5+'],
				['Netscape 6.0+'],
				['Mozilla 0.9+'],
				['AOL 5+'],
				['Opera 5+'],
				['Safari 3+'] // there must be no comma after the last element
			],
			['Mac OS Browsers', null, null,
				['Internet Explorer 5+'],
				['Netscape 6.0+'],
				['Mozilla 0.9+'],
				['AOL 5+'],
				['Safari 1.0+']
			],
			['KDE (Linux, FreeBSD)', null, null,
				['Netscape 6.0+'],
				['Mozilla 0.9+']
			]
		],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['总览/历史', '../cn/about/index.html',
					],
		['最新发布', '../cn/about/whatsnew.shtml.htm'],
	
	    ['解决方案', '../cn/about/solutions.html'],
		
		['制造工艺', '../cn/about/fabrication.html'],
		
		['经验', '../cn/about/experience.html'],
		
		['术语表', '../cn/about/glossary.html'],
		
		['技术服务支持', '../cn/about/tech_service.html'],
		
		['质量方针', '../cn/about/quality.html'],
		
		['环境方针', '../cn/about/environmental.html'],
		
		['参观工厂', '../cn/about/plant_tour.html'],
		
		['目标宣言', '../cn/about/mission_statement.html'],
		
		['工作机会', '../cn/about/employment.shtml.htm']
	],
	['产品', '../cn/products/index.html',
		// this is how item scope settings are defined
		['总览', '../cn/products/index.html'],
		// this is how multiple item scope settings are defined
		['总览', '../cn/products/index.html'],
		['固相复合金属', '../cn/products/cladding.html'],
		['电镀', '../cn/products/electroplating.html'],
		['电子束焊接', '../cn/products/electron_beam_welding.html'],
		['成形', '../cn/products/contour_profiling.html'],
		['焊锡涂敷', '../cn/products/solder_coating.html'],
		['金属组合', '../cn/products/metal_combinations.html'],
		['再轧', '../cn/products/reroll.html']
	],
	['市场和应用', '../cn/markets/index.html',
		['总览', '../cn/markets/index.html'],
		['总览', '../cn/markets/index.html'],
		['电信', '../cn/markets/telecom.html'],
		['电脑', '../cn/markets/computer.html'],
		['汽车', '../cn/markets/automotive.html'],
		['家用电器', '../cn/markets/appliance.html'],
		['医疗', '../cn/markets/medical.html'],
		['航空航天', '../cn/markets/aircraft.html'],
		['燃料电池', '../cn/markets/fuel_cells.html'],
		['热控技术', '../cn/markets/thermal.html']
		],
	['金属特征指南', '../cn/metal_prop/index.html',
	 // this is how item scope settings are defined
	    ['金属特征指南', '../cn/metal_prop/index.html'],
		['铜', '../cn/metal_prop/copper.html'],
		['铍铜', '../cn/metal_prop/beryillium_copper.html'],
		['黄铜', '../cn/metal_prop/brass.html'],
		['青铜', '../cn/metal_prop/bronze.html'],
		['铜镍合金', '../cn/metal_prop/cupro_nickel.html'],
		['旋节合金', '../cn/metal_prop/cupro_nickel.html'],
		['镍银', '../cn/metal_prop/nickel_silvers.html'],
		['铝', '../cn/metal_prop/aluminum.html'],
		['玻璃封接合金', '../cn/metal_prop/aluminum.html'],
		['镍', '../cn/metal_prop/nickel.html'],
		['不锈钢', '../cn/metal_prop/stainless_steel.html'],
		['焊料合金', '../cn/metal_prop/solder_alloy.html'],
		['贵金属合金', '../cn/metal_prop/precious_alloys.html']
			 ],
	['TMI技术论文', '../cn/papers/index.html',
	    ['TMI技术论文', '../cn/papers/index.html'],
		['论文列表', '../cn/papers/index.html']
	],
    ['联系我们', '../cn/contact/index.html',
	    ['技术支持', '../cn/contact/index.asp.htm'],
		['技术支持', '../cn/contact/index.asp.htm'],
		['驾车路线', '../cn/contact/directions.html'],
		['各地办事处', '../cn/contact/offices.html'],
		['索取资料', '../cn/contact/contact.asp.htm'],
		['要求报价', '../cn/contact/request_a_quote.asp.htm'],
		['咨询技术专家', '../cn/contact/ask_expert.asp.htm'],
		['反馈', '../cn/contact/feedback_form.asp.htm']
	],
	['产品介绍手册', '../cn/brochures/index.html',
	    ['总览', '../cn/brochures/index.html'],
		['总览', '../cn/brochures/index.html'],
		['TMI固相复合金属指南', '../cn/products/TMI_364_Clad_Brochure.pdf',{'tw':'_blank'}],
		['铝固相复合引线焊接的优势', '../cn/products/TMI_349_Alum.pdf',{'tw':'_blank'}],
		['TMI异形金属带材设计', '../cn/products/TMI_Multigage.pdf',{'tw':'_blank'}],
		['电子束焊接的双金属', '../cn/products/TMI_381_EB_Welding.pdf',{'tw':'_blank'}],
		['卷轮连动式电镀', '../cn/products/TMI_369_Electro_Plate.pdf',{'tw':'_blank'}],
		['工程金属系统解决方案', '../cn/products/TMI_Corporate.pdf',{'tw':'_blank'}]
	],
];

