// 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 = [
	['About Idcol', 'about.php', null,
		// this is how item scope settings are defined
		['Mission and Values', 'mission.php'],['Idcol Board', 'board.php'],['Management', 'management.php'],
		// this is how multiple item scope settings are defined
		['Constitutional Documents and Ownership', 'constitutional.php', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
		['Financial Statements', 'financial.php'],
		['Resources', 'resource.php']
			]
	,
		['Projects', 'projects.php', null,
		['Large & Medium Infrastructure Projects', 'largeProduct.php'],
		['Renewable Energy Projects', 'energyProject.php'],
	
	
	

	],
	['Products and services', 'product.php', null,
		['Financial Arranging Services', 'arranging.php'],
		['Financial Advisory Services', 'advisory.php'],
		['Project Finance Training Courses', 'training.php']
	],

 ['Lending Policy', 'lending.php', null,
		['Eligibility', 'eligible.php'],
		['Fees & Charges', 'fees.php'],
		['Terms & Conditions', 'terms.php'],
		['Project Cycle', 'projectCycle.php']
],
 
 ['News and Events', '', null,
  ['Large and Medium Infrastructure Projects' ,'largeandmedium.php'],
    ['Renewable Energy' ,'renewable_energy.php'],
  ['Events', 'events.php'],
  ['Announcements', 'announcements.php']
  
 ],
 
 ['Download', 'publications.php', null,
 ],
['', null, null,
	 // this is how item scope settings are defined
	],
];

