// 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.htm'],
		['History', 'history.htm'],
		['Roll of Honour', 'rhonour.htm'],
		['Culture', 'culture.htm'],
		['Maps', 'maps.htm'],
	      ['Census-2001', 'census.htm'],
           ['Statistical Book 2007-08','./pdf/shb200708.pdf',{'tw':'_blank'}],
	],
	['Schemes', null, null,
		['Free Color TV', 'ctvmain.htm'],
		['Free 2 Acres Land', 'flandmain.htm'],
		['Free LPG Gas and Stove', 'lpgmain.htm'],
		['Free HSD Patta', 'hsdmain.htm'],

	],
	['Public Interest', null, null,
		['Tourism', 'tourism.htm'],
		['Monuments', 'monuments.htm'],
		['Personalities', 'personalities.htm'],
	      ['Phone Numbers','phone.htm'],
		['Online Petition Filing','http://dharmapurigdp.tn.nic.in/online',{'tw':'_blank'}],
		['Public Utility Forms','forms.htm',{'tw':'_blank'}],
		['Related Links','links.htm',{'tw':'_blank'}],
	],
	['Elected Members', null, null,
		['MP', 'mp.htm'],
		['MLAs', 'mla.htm'],
		['District Panchayat', 'dpanchayat.htm'],
		['Municipality', 'municipality.htm'],
		['Panchayat Unions', 'punion.htm'],
		['Town Panchayats', 'tpanchayat.htm'],
	],
	['Photo Gallery', 'gallery.htm'],
	['Contact Us', 'contact.htm'],
	['Documents', 'reports.htm']

];

