// 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 = [
	['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;THE COMPANY', null, null,
		['HOME', 'home.asp'],
		['QUALITY POLICY', 'quality_policy.asp'],
		['MISSION STATEMENT', 'mission_statement.asp'],
		['SUCCESS STEPS', 'success_steps.asp'],
		['ADVANTAGES OF EXPERT', 'advantages.asp'],
		['THE TEAM', 'team.asp'],
			/*['Win32 Browsers', null, null, 
				['Home'],
				['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'
		['Unsupported Browsers', 'javascript:alert(\'hello world\')', null,
			['Internet Explorer 4.x'],
			['Netscape 4.x']
		],
		['Report test results', 'http://www.softcomplex.com/support.html'],*/
	],
	['&nbsp;&nbsp;WHY CHOOSE EXPERT', null, null,
		// this is how item scope settings are defined
		['HEADLINES', 'headlines.asp'],
		// this is how multiple item scope settings are defined
		['BUSINESS BENEFITS', 'benefits.asp'],
		['PARTNERS & ALLIANCES', 'partners.asp'],
		['DIVISIONS', null,null,
			['ACE BUSINESS SOLUTIONS', 'ace.asp'], 
			['TALLY', 'tally.asp'], 
			['KNOWLEDGE INFINITI', 'ki.asp']
				/*['Home'],
				['Netscape 6.0+'],
				['Mozilla 0.9+'],
				['AOL 5+'],
				['Opera 5+'],
				['Safari 3+']*/ // there must be no comma after the last element
			],
		/*['TM Comparison Table', 'http://www.softcomplex.com/products/tigra_menu/docs/compare_menus.html'],
		['Menu Builder', '../_builder/index.html'],*/
	],
	/*['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PRODUCTS', null, null,
		['Traditional Blue', '../demo1/index.html'],
		['White Steps', '../demo2/index.html'],
		['Inner HTML', '../demo3/index.html'],
		['All Together', '../demo4/index.html'],
		['Frames Targeting', '../demo5/index.html'],
		['Accessing IDs', '../demo6/index.html']
	],*/
	['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PRODUCTS', 'products.asp'],
	
	['SOLUTIONS & SERVICES', null, null,
		['BIOMETRICS', 'biometrices.asp'],
		['OFFICE SMS', 'office_sms.asp'],
		['RFID SOLUTIONS', 'rfid.asp'],
		['KnoWhere - AVL SOLUTION', 'avl.asp'],
		['MANPOWER CONSULTANCY', 'manpower.asp'],
		['WEB SOLUTIONS&SERVICES', 'web.asp']
	],
	['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CAREERS', 'careers.asp'],
	['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;REACH US', 'reach_us.asp'],
];


