// 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'],
	
	['Company Profile', null, null,
//		['About Us', 'Profile_aboutus.html'],
		['Board of Directors', 'Profile_bod.html'],
		['Chairman’s Statements', 'Profile_chair_msg.html'],
		['Organisation', 'Profile_orga.html'],
		['Photo Gallery', 'Profile_photogal.html'],
	],
	['GPCL Services', 'Services.html', null,
		['Sectors & Expertise', 'Services_Sectors.html'],
		['Project Cycle', 'Services_ProjectCycle.html'],
		['Our Strength', 'Services_strength.html'],
		['Our Motto', 'Services_motto.html'],
	],
	
	['Major Assignments', null, null, 
		['Region Wise', null, null,
			['Europe & Central Asia', 'Major_assignments_ECA.html'],
			['Africa', 'Major_assignments_AF.html'],
			['South & South East Asia', 'Major_assignments_SSEA.html'],
			['South America', 'Major_assignments_SA.html'],	
			['Middle East', 'Major_assignments_ME.html'],	
		],
		
		['Category Wise', null, null, 
			['Procurement Review', 'Major_assignmentsProR.html'],
			['Procurement Advice', 'Major_assignmentsPAM.html'],
			['Procurement Governance', 'Major_assignmentsPG.html'],
			['Others', 'Major_assignmentsOthers.html'],
		   
		],
	],
	
	['Careers', '', null,
		['Empanelment', 'Career_Empanelment.html'],
		['Openings', 'Career_Openings.html'],
	],
];


