// 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 = [
	['HOME','index.php'],
	['ABOUTUS', 'about-us.html',
		// this is how item scope settings are defined
		//['Product Page', 'http://www.softcomplex.com/products/tigra_menu/', {'tw':'_blank'}],
		// this is how multiple item scope settings are defined
		//['Welcome Page', '../ReadMeFirst.html', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
		//['Documentation', 'http://www.softcomplex.com/products/tigra_menu/docs/'],
		//['Forums', 'http://www.softcomplex.com/forum/forumdisplay.php?fid=29'],
		//['TM Comparison Table', 'http://www.softcomplex.com/products/tigra_menu/docs/compare_menus.html'],
		//['Menu Builder', '../_builder/index.html'],
	],
	['PROJECTS', null, null,
		['CURRENT', 'current1.html', {'tw':'_blank'}],
		['FUTURED', '', {'tw':'_blank'}],
		],
	['PARTNERS', 'partners.html'],
	['CSR ACTIVITIES', 'csr.html'],
	['CAREERS', 'careers.html'],
	['FEEDBACK', 'feedback.php'],
	['CONTACT', 'contact.html']
];

