// 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 = [
				
	['GJC INTRODUCTION      ', null, null,
		['CHAIRMAN DESK', 'chairman.html', null],
		['PRINCIPAL MESSAGE', 'principal.html', null],

		// 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'
		['VISION', 'vision.html', null],
		['MISSION', 'mission.html', null],
		[ 'BOARD OF TRUSTEE','trustee.html',null],
		['CONTACT US', 'contact_us.htm']
	],
	['INFRASTRUCTURE  ', null, null,
		// this is how item scope settings are defined
		['COLLEGE BUILDING', 'infrastructure.html',null],
		// this is how multiple item scope settings are defined
		['FACULTIES', 'faculties.html', null],
		['LIBRARY', 'library.html',null],
		['COMPUTER LAB', 'computer_lab.html',null],
		['MASS COMM. LAB', 'masscomm_lab.html',null],
		['PLAY GROUND', 'play_ground.html',null]
	],
['RESEARCH FORUM  ', 'research.html', null,
	//	['COMPUTER APPLICATION', 'construction.html',null],
//		['MANAGEMENT', 'construction.html',null],
//		['COMMERCE', 'construction.html',null],
	//	['ENGLISH', 'construction.html',null],
	//	['MASS COMM', 'construction.html',null],
		//['ECONOMICS ', 'construction.html',null],
//		['POL SCIENCE','construction.html',null]
	],
	
	['FACILITIES ', 'facilities.html', null,
		
		
	],
	
	['COURSES ', null, null,
		// this is how item scope settings are defined
		['BBA', 'courses.html',null],
		// this is how multiple item scope settings are defined
		['BCA', 'courses.html', null],
		['BA (MCJ)', 'courses.html',null],
		['BA (ECO)', 'courses.html',null],
		['BA (ENG)', 'courses.html',null],
		['BA (GEO)', 'courses.html',null],
		['BCom (H)', 'courses.html',null],
		
	],
	['EVENTS ', null, null,
		// this is how item scope settings are defined
		//['RESEARCH FORUM', 'research.html',null],
		// this is how multiple item scope settings are defined
		['EVENTS', 'events.html', null],
	['ACHIEVEMENTS', 'achievements.html',null],
	//	['CULTURAL ACTIVITIES', 'cultural.html',null],
		//['SPORTS ACTIVITIES','sports.html',null],
		
	],
		
	['OTHERS  ', null, null,
		// this is how item scope settings are defined
		['RECRUITMENT', 'recruitment.html',null],
		// this is how multiple item scope settings are defined
		['PARENTS PAGE', 'parents.html', null],
		['ALUMNI ASSOCIATION', 'alumni.html',null],
//		['EMPLOYERS PAGE', 'construction.html',null],
		['PHOTO GALLERY','photo_gallary.html',null],
		
	],
	
	
		
	
	
];

