// Syntaxes: *** START EDITING HERE, READ THIS SECTION CAREFULLY! ***
//
// menu[menuNumber][0] = new Menu(Vertical menu? (true/false), 'popout indicator', left, top,
// width, 'mouseover colour', 'background colour', 'border stylesheet', 'text stylesheet');
//
// Left and Top are measured on-the-fly relative to the top-left corner of its trigger, or
// for the root menu, the top-left corner of the page.
//
// menu[menuNumber][itemNumber] = new Item('Text', 'URL', 'target frame', length of menu item,
//  additional spacing to next menu item, number of target menu to popout, cursor style);
//
// If no target menu (popout) is desired, set it to 0. Likewise, if your site does not use
// frames, pass an empty string as a frame target.
//
// Something that needs explaining - the Vertical Menu setup. You can see most menus below
// are 'true', that is they are vertical, except for the first root menu. The 'length' and
// 'width' of an item depends on its orientation -- length is how long the item runs for in
// the direction of the menu, and width is the lateral dimension of the menu. Just look at
// the examples and tweak the numbers, they'll make sense eventually :).

var menu = new Array();

// Default colours passed to most menu constructors (just passed to functions, not
// a global variable - makes things easier to change later in bulk).
var normText = '#FFFFFF', normBack = '#658abc';
var selText = '#658abc', selBack = '#FFFFFF';
var subNormText = '#658abc', subNormBack = '#FFFFFF';
var subSelText = '#FFFFFF', subSelBack = '#658abc';
var separator = true;

// Default 'length' of menu items - item height if menu is vertical, width if horizontal.
var globalHeight = 16;
var subHeight = 21;

menu[0] = new Array();
menu[0][0] = new Menu(false, '', globalHeight, '', 'itemText');
menu[0][1] = new Item(' 关于我们  ', '', '', globalHeight, 1, '', '', 'default');
menu[0][2] = new Item(' 产品资源  ', '', '', globalHeight, 2, '', '', 'default');
menu[0][3] = new Item(' 在线定制  ', '', '', globalHeight, 3, '', '', 'default');
menu[0][4] = new Item(' 硬件与外设 ', '', '', globalHeight,4, '', '', 'default');
menu[0][5] = new Item(' 在线支持  ', '', '', globalHeight, 5, '', '', 'default');
menu[0][6] = new Item(' 客户关怀  ', '', '', globalHeight, 6, '', '', 'default');
menu[0][7] = new Item(' 资料中心  ', '', '', globalHeight, 7, '', '', 'default');

menu[1] = new Array();
menu[1][0] = new Menu(true, '>', globalHeight, 'itemBorder', 'itemText');
menu[1][1] = new Item('公 司 简 介', 'http://www.027-soft.com/aboutus.htm#bef', '', subHeight,  0, '', '', 'hand');
menu[1][2] = new Item('科 能 理 念', 'http://www.027-soft.com/aboutus.htm#bi', '', subHeight, 0, '', '', 'hand');
menu[1][3] = new Item('合 作 伙 伴', 'http://www.027-soft.com/aboutus.htm#pt', '', subHeight, 0, '', '', 'hand');
menu[1][4] = new Item('联 系 方 法', 'http://www.027-soft.com/aboutus.htm#add', '', subHeight, 0, '', '', 'hand');
menu[1][5] = new Item('意 见 箱', 'http://www.027-soft.com/serviceonline/consultation.htm', '', subHeight, 0, '', '', 'hand');
menu[1][6] = new Item('回首页', 'http://www.027-soft.com/', '', subHeight, 0, '', '', 'hand');

menu[2] = new Array();
menu[2][0] = new Menu(true, '>', globalHeight, 'itemBorder', 'itemText');
menu[2][1] = new Item('办 公 自 动 化 系 统', 'http://www.027-soft.com/products/oa.htm', '', subHeight,  0, '', '', 'hand');
menu[2][2] = new Item('企 业 物 流 管 理', 'http://www.027-soft.com/products/mrp.htm', '', subHeight, 0, '', '', 'hand');
menu[2][3] = new Item('连 锁 商 贸 通 系 列', 'http://www.027-soft.com/products/other.htm', '', subHeight, 0, '', '', 'hand');
menu[2][4] = new Item('网 站 作 品', 'http://www.027-soft.com/products/web.htm', '', subHeight, 0, '', '', 'hand');
menu[2][5] = new Item('网 络 工 程', 'http://www.027-soft.com/products/eng.htm', '', subHeight, 0, '', '', 'hand');
menu[2][6] = new Item('健康体检管理及医院管理', 'http://www.027-soft.com/products/jktj.htm', '', subHeight, 0, '', '', 'hand');
menu[2][7] = new Item('IC卡及条码中心案例', 'http://www.027-soft.com/products/ka.htm', '', subHeight, 0, '', '', 'hand');

menu[3] = new Array();
menu[3][0] = new Menu(true, '>', globalHeight, 'itemBorder', 'itemText');
menu[3][1] = new Item('定 制 流 程 ', 'http://www.027-soft.com/service/flow.htm', '', subHeight, 0, '', '', 'hand');
menu[3][2] = new Item('成 功 案 例', 'http://www.027-soft.com/aboutus.htm', '', subHeight, 0, '', '', 'hand');
menu[3][3] = new Item('解 决 方 案', 'http://www.027-soft.com/aboutus.htm', '', subHeight, 0, '', '', 'hand');
menu[3][4] = new Item('意 见 箱', 'http://www.027-soft.com/serviceonline/consultation.htm', '', subHeight, 0, '', '', 'hand');

menu[4] = new Array();
menu[4][0] = new Menu(true, '>', globalHeight, 'itemBorder', 'itemText');
menu[4][1] = new Item('网 络 工 程', 'http://www.027-soft.com/products/eng.htm', '', subHeight, 0, '', '', 'hand');
menu[4][2] = new Item('多 媒 体 光 盘', 'http://www.027-soft.com/products/mm.htm', '', subHeight, 0, '', '', 'hand');
menu[4][3] = new Item('邮 件 询 价', 'mailto:gu3152001@21cn.com?subject=Price!索取价格信息', '', subHeight, 0, '', '', 'hand');
menu[4][4] = new Item('IC卡及条码报价', 'http://www.027-soft.com/products/equip.htm', '', subHeight, 0, '', '', 'hand');

menu[5] = new Array();
menu[5][0] = new Menu(true, '<', globalHeight, 'itemBorder', 'itemText');
menu[5][1] = new Item('在 线 订 单', 'http://www.027-soft.com/serviceonline/billonline.htm', '', subHeight, 0, '', '', 'hand');
menu[5][2] = new Item('在 线 咨 询', 'http://www.027-soft.com/serviceonline/billonline.htm', '', subHeight, 0, '', '', 'hand');
menu[5][3] = new Item('意 见 箱', 'http://www.027-soft.com/serviceonline/consultation.htm', '', subHeight, 0, '', '', 'hand');

menu[6] = new Array();
menu[6][0] = new Menu(true, '>', globalHeight, 'itemBorder', 'itemText');
menu[6][1] = new Item('新闻报道', 'http://www.027-soft.com/news/inthenews.aspx', '', subHeight, 0, '', '', 'hand');
menu[6][2] = new Item('组织机构', 'http://www.027-soft.com/news/pressreleases.aspx', '', subHeight, 0, '', '', 'hand');
menu[6][3] = new Item('常见问题解答', 'http://www.027-soft.com/news/events.aspx', '', subHeight, 0, '', '', 'hand');
menu[6][4] = new Item('礼品赠送', 'http://www.027-soft.com/news/pressreleases.aspx', '', subHeight, 0, '', '', 'hand');
menu[6][5] = new Item('加入邮件列表', 'http://www.027-soft.com/news/events.aspx', '', subHeight, 0, '', '', 'hand');

       
menu[7] = new Array();
menu[7][0] = new Menu(true, '>', globalHeight, 'itemBorder', 'itemText');
menu[7][1] = new Item('文章频道', 'http://www.027-soft.com/cms/Article/Index.asp', '', subHeight, 0, '', '', 'hand');
menu[7][2] = new Item('软件下载频道', 'http://www.027-soft.com/cms/softdown/Index.asp', '', subHeight, 0, '', '', 'hand');
menu[7][3] = new Item('资料中心频道', 'http://www.027-soft.com/cms/Soft/Index.asp', '', subHeight, 0, '', '', 'hand');
menu[7][4] = new Item('图片频道', 'http://www.027-soft.com/cms/Photo/Index.asp', '', subHeight, 0, '', '', 'hand');

