// 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 Us', null, null,
 		['Why', 'why.html', {'tw':'_top'}],
		['Advisory Board', 'advisoryboard.html', {'tw':'_top'}],
		['Executive Members', 'boardmembers.html', {'tw':'_top'}],
		['Feedback', 'feedback.html', {'tw':'_top'}],		
		['Contact us', 'contact.html', {'tw':'_top'}]

	],
	['Programs', null, null,
		// this is how item scope settings are defined
		['Livestock Development Projects', 'livestock.html', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
		['Gift of Goats', 'giftofgoats.html', {'tw':'_top'}],
		['Microfinance', 'microfinance.html', {'tw':'_top'}],
		['Schools and Libraries', 'schoolandlibrary.html', {'tw':'_top'}],		
		['Healthcare', 'medicalhelp.html', {'tw':'_top'}],
	],
	['Partners', null, null,
		['Radiology Mammography International', 'radiology.html', {'tw':'_top'}],
		['Room To Read', 'roomtoread.html', {'tw':'_top'}],
		['Lending Promise', 'lendingpromise.html', {'tw':'_top'}],
		['BLE Group', 'BLEgroup.html'],
		['Women for Human Rights', 'womenforhumanrights.html', {'tw':'_top'}],
	],	
	['Get Involved', null, null,
		['Volunteers', 'volunteers.html', {'tw':'_top'}],
		['Programs', 'program.html', {'tw':'_top'}],
		['Join', 'register.html', {'tw':'_top'}],
	],
	['Past Events', null, null,
		['HealthCare', 'mammography.html', {'tw':'_top'}],
		['Agriculture', 'agriculture.html', {'tw':'_top'}],
		['Schools and Education', 'schools.html', {'tw':'_top'}],
        ['Microfinance', 'microfinance.html', {'tw':'_top'}],		
	],

	['Contribute', null, null,
		['Make a Contribution', 'contribute.html', {'tw':'_top'}],		
	]
];
