// 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','default.htm'],
	['About District', null, null,
		['Profile', 'profile.html'],
		['History', 'history.html'],
		['Collectors', 'Collectors.html'],
		['Culture', 'Culture.html'],
		['Maps', 'maps.html'],
	      ['Census-2001', 'census2001.html'],
           ['Who is Who','workinprogress.html'],
	],
	['Departments', null, null,
		['ACTW', 'workinprogress.html'],
		['ICDS', 'dwcdo.html'],
		['PHE', 'workinprogress.html'],
		['Food', 'workinprogress.html'],

	],
	['Public Interest', null, null,
		['How to Reach', 'Howtoreach.html'],
		['Places of Interest', 'Placesofinterest.html'],
		['Fares & Festivals', 'workinprogress.htm'],
	      ['Phone Numbers','Telephone.html'],
		['Public Utility Forms','workinprogress.htm'],
	],
	['Elected Members', null, null,
		['MP / MLAS', 'ElectedMPMLA.html'],
		['District Panchayat', 'ElectedZP.htm'],
		['Block Panchayat', 'MembersJP.html'],
		['Village Panchayat', 'workinprogress.htm'],
		['Urban Panchayat', 'MembersNP.html'],
	],
	['Photo Gallery', 'photogallery.html'],
	['Contact Us', 'contact.html'],
	['News from District', 'news.html']

];

