// 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.html'],
	['About Company', null, null,
		// this is how item scope settings are defined
		['Company Profile', 'companyProfile.html'],
		// this is how multiple item scope settings are defined
		['Company History', 'companyHistory.html', ],
		['Our Commitment', 'companyCommitment.html', ],
		['Management Team', 'ManagementTeam.html']
	],
	['Products', null, null,
		['Product Catalog', 'prodCat.html']

	],
	['R & D', null,null,
		['MAITTR', 'MAITTR.html'],
		['MES', 'MES.html'],
		['Technology & Processing', null,null,
			['Aerobic Composting', 'AerobicComposting.html'],
			['Tissue Culture', 'TissueCulture.html']
		]
	],
	
	['Contact Us','']

];


