// 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 = [
	
		['WATERSHED MANAGEMENT',null, null,
		
			['NARIYAMBUDUR WATERSHED', 'http://taprishngo.com/project.htm'],
							// there must be no comma after the last element
			['Salem Borewell Project', 'http://taprishngo.com/watershed.htm'],
								// there must be no comma after the last element
		
		],
		
		['ORPHANAGE', 'http://taprishngo.com/homeofhope.htm'],
		
		['EDUCATION',null, null,
			['Day Care Center', 'http://taprishngo.com/daycare.htm'],
			['LIT Project', 'http://taprishngo.com/project.htm#LIT'],
			['Self Sustaining Training', 'http://taprishngo.com/self_sustain.htm'],
			['Training and Placement', 'http://taprishngo.com/placement.htm'],
		
		
		],
		
		
	
	
	
	['MEDICAL ATTENTION', null, null,
		// this is how item scope settings are defined
		['Health And Hygiene', 'http://taprishngo.com/medical-attention.htm'],
							// there must be no comma after the last element

			//['Old Age Care', 'http://taprishngo.com/medical-attention.htm'],
								// there must be no comma after the last element
	
			//['Malnutrition', 'http://taprishngo.com/medical-attention.htm'],
								// there must be no comma after the last element
	
			//['Health Awareness Camps', 'http://taprishngo.com/medical-attention.htm'],
							// there must be no comma after the last element
			
		],
		
		// 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'
				

		['CORPORATE RESPONSIBILITY',null, null,
		
			['Volunteers', 'http://taprishngo.com/corporate-responsiblity.htm'],
							// there must be no comma after the last element
			['Parnerships', 'http://taprishngo.com/corporate-responsiblity.htm'],
								// there must be no comma after the last element
		
		],
		//['Agricultural Development' , null, null,
		
			//['Watershed', 'http://taprishngo.com/watershed.htm'],
							// there must be no comma after the last element
			//['Soil Erosion Protection', 'http://taprishngo.com/soil-erosion-protection.htm'],
			//['Crop Education', 'http://taprishngo.com/crop-education.htm'],
			//['Planting of Saplings', 'http://taprishngo.com/planting-of-saplings.htm'],
			//['Water Land Management', 'http://taprishngo.com/water-land-management.htm'],
		
		//],
		
		//['Village Rehabilitation' , null, null,
		
			//['Reduce Migration', 'http://taprishngo.com/reduce-migration.htm'],
							// there must be no comma after the last element
			//['Orphange', 'http://taprishngo.com/homeofhope.htm'],
		
		//],
		//['Training and Placement', 'http://taprishngo.com/placement.htm'],
		//['Joint Ventures', 'http://taprishngo.com/joint-ventures.htm'],
		
	
		
];

