//==================================================================================
// Please make sure you save a backup file before you make any changes to the code!!
//==================================================================================

// To modify.....

// - The navigation display text
//
// Simply edit the text between the two single quotes ('')
// Example: to change Welcome Message in nav to say Welcome, simply find the line contains 
//          the text Welcome Message (['Welcome message', 'index.html', null],) just change whatever 
//          in between the two single quote ('')
// Note:
// * The script will automatically wrap the long text, but you can add HTML tag within the display 
// text, such as <BR> if you want to force a linebreak.
// * Sometimes you might discover that the display text goes over two lines, and the link 
// does not respond if you move your mouse over to the second line. You can correct this error by
// replacing null with {'sh':'32'}. Example:
//
// ['YOUR SECTION NAME IS VERY VERY LONG', 'SECTION URL', null],
//
// can go like this:
//
// ['YOUR SECTION NAME<BR>IS VERY VERY LONG', 'SECTION URL', {'sh':'32'}],
//
// * If you want to put a single quote, such as "Student's" in the display text, you will need to put 
// a \ before the single quote. Example: Student's should be Student\'s

// - The link
//
// Simply edit the URL between the single quotes ('')
// Example: to change the URL of Welcome message in the nav to points to welcome.html, find 
//          the line contains the URL of the Welcome Message (['Welcome message', 'index.html', null],) 
//          and then change the URL between the two single quotes ('')
//
//
// - Add a new items
// If you just want to add a new main section, copy the following script: (remember to remove the //)
//
// ['YOUR SECTION NAME', 'SECTION URL', null],
//
// and paste it into the script
//
// If you want to add a new section with sub sections, copy the following script: (remember to // remove the //)
//
//	['SECTION 1', 'SECTION URL 1', null, 
//		['SUB-SECTION 1','SUB-SECTION URL 1', null], 
//		['SUB-SECTION 2','SUB-SECTION URL 2', null] 
//	],
//
// You can add additional subsection by just duplicate "sub-section 1" line. Please remember that,
// the last item of the entire sub-section should have *NO* comma after it. (note "sub-section 2")



var MENU_ITEMS = [

	['WELCOME MESSAGE', 'index.html', null], // copy this line if you want to add a single main section

	['FACULTY', 'faculty/index.html', null,  // copy this......
		['Department Faculty','faculty/index.html', null], 
		['FAS Faculty','http://www.nyu.edu/fas/Faculty', null] 
	], // ..... until here if you want to add a main section with sub sections 

	['UNDERGRADUATE PROGRAM', 'undergrad/index.html', null,
		['Requirements','undergrad/requirements.html', null],
		['Honors Graduation','undergrad/requirements.html#honors', null],
		['Courses & Courses Description','undergrad/courses.html', null],
		['Academic Calendar','http://www.nyu.edu/registrar/calendars/', null],
		['Admissions','http://admissions.nyu.edu/', {'tw':'_blank'}],
		['Study Abroad','http://www.nyu.edu/studyabroad/', {'tw':'_blank'}],
		['CompLit After Dark','afterdark/index.html', null],
		['CAS Bulletin','http://cas.nyu.edu/page/ug.Bulletin', {'tw':'_blank'}],
	],

	['BA/MA PROGRAM', 'bama/index.html', null,
		['Brochure (PDF)','http://www.nyu.edu/cas/Academic/Programs/bama_brochure.pdf', null],
		['Complit Requirements','bama/index.html', null]
	],

	['GRADUATE PROGRAM','graduate/index.html', null,
		['Requirements','graduate/requirements.html', null],
		['Courses & Course Descriptions','graduate/courses.html', null],
		['Job Placements','graduate/job.html', null],
		['GSAS Admissions and Application','http://gsas.nyu.edu/page/grad.admissions', {'tw':'_blank'}],
		['Financial Aid','graduate/financial.html', null],
		['International Study','http://gsas.nyu.edu/page/grad.scholarlyprograms.internationalstudy', null],
		['Academic Calendar','http://gsas.nyu.edu/page/grad.life.calendar', null],
		['Fellowships and Awards','graduate/travelprog.html', null],
		['GSAS Bulletin','http://gsas.nyu.edu/page/grad.bulletin', null],
		['FAQ','graduate/faqs.html', null]
	],

	['GRADUATE STUDENTS', 'gradstudents/index.html', null,
		['Students\' emails','gradstudents/index.html', null]
	],

	['NEWS & EVENTS', 'newsevents/index.html', null,
		['News','newsevents/news.html', null],
		['Events','newsevents/index.html', null],
		['Photo Albums','newsevents/photos.html', null]
	],

	['NEWSLETTERS', 'newsletters/index.html', null]

];

//{'sh':'33'}
//{'tw':'_blank'}