// 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 = [
	['首　　页', 'index.aspx'],
	['公司概况 ', 'news/NewsList.aspx?Cat_ID=5', null,
		// this is how item scope settings are defined
		['公司简介', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=5&News_ID=250', {'tw':'_blank'}],
		// this is how multiple item scope settings are defined
		['公司大事记', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=5&News_ID=246'],
		['组织机构', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=5&News_ID=249'],
		['人力资源结构', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=5&News_ID=245'],
		['公司历年荣誉', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=5&News_ID=244'],
	],
	['系统集成',  'news/NewsList.aspx?Cat_ID=6', null,
		// this is how item scope settings are defined
		['成功案例', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=6&News_ID=251'],
		// this is how multiple item scope settings are defined
		['业务介绍', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=6&News_ID=253'],
		['技术力量', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=6&News_ID=252'],
		
	],
	['产品销售',  'news/NewsList.aspx?Cat_ID=7', null,
		['家用电脑', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=7&News_ID=258'],
		['商用电脑', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=7&News_ID=262'],
		['笔记本电脑', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=7&News_ID=261'],
		['服务器', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=7&News_ID=260'],
		['网络与监控设备', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=7&News_ID=259'],
		
	],
	['客户服务',  'news/NewsList.aspx?Cat_ID=8', null,
		['技术专题', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=8&News_ID=263'],
		['常见问题', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=8&News_ID=264'],
		['故障诊断', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=8&News_ID=265'],
		
		
	],
	['企业文化',  'news/NewsList.aspx?Cat_ID=9', null,
		['企业精神', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=9&News_ID=271'],
		['经营理念', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=9&News_ID=272'],
		['上月明星', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=9&News_ID=268'],
		['月度优秀员工', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=9&News_ID=269'],
		['2009年度优秀员工', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=9&News_ID=292'],
		['员工风采', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=9&News_ID=270'],
	],
	
	['联系我们', 'news/NewsDetails.aspx?Cat_pID=1&Cat_ID=11&News_ID=273']
	
];


