// 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', 'Home.htm'],

['Census', null, null,
		// this is how item scope settings are defined
		['Agricultural Census', 'agricultureCencus.htm'],
		// this is how multiple item scope settings are defined
		['Economic Census', 'EconomicCensus.htm', {'tw':'_top', 'tt':'Economic Census', 'sb':'Test Status Bar Message'}],
		['Employees Census', 'Employees Census.htm'],
		['Population', null, null,
			['State Population', 'population.htm'],
			['District Population ', 'DisPop.htm'],
	        ['Block Population', 'BlockPop.htm']	       			
		],
		['Hospital Statistic', 'Hospital.pdf',{'tw':'_blank'}],
		['Accident Statistic', 'Accident.htm']




		
	],


       ['Birth & Deaths', null, null,
		// this is how item scope settings are defined
		['Registration', 'Birth&DeathRegistration.htm', {'tw':'_top', 'tt':'Registration of Births & Deaths Wing', 'sb':'Test Status Bar Message'}],
		// this is how multiple item scope settings are defined
		['Application form', 'Birth&Death.htm', {'tw':'_top', 'tt':'Application Form', 'sb':'Test Status Bar Message'}],
		['Diseases', 'Diseases.htm', {'tw':'_top', 'tt':'Diseases', 'sb':'Test Status Bar Message'}],
		['Standard Format', null, null,
			['Birth Certificate ', 'birthcert.pdf'],
	        ['Death Certificate', 'deathcert.pdf']	       			
		]





	],
	['State Income', null, null,
		['About State Income', 'StateIncome.htm'],
		['State Income Statistics', 'stateincome.pdf',{'tw':'_blank'}]
		
	],




	['About us', null, null,
	['Historical Background', 'History.htm'],
	['Organisational Chart', 'Organisational Chart.htm'],
    ['Telephone Directory', 'Contect.htm'],
    ['RTI Manual', 'rtimanual.pdf',{'tw':'_blank'}],
	
	

		
		// 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'
		['Wings', null, null,
			['Establishment', 'EstablishmentWing.htm'],
			['General Statistical', 'GeneralStatisticalWing.htm'],
	        ['National Sample Survey', 'History.htm'],
	        ['Regd. of Births & Deaths', 'Birth&DeathRegistration.htm'],
	        ['Price & Market Inteligence', 'Price&MarketMarketIntelligenceWing.htm'],
	        ['Agriculture Census  ', 'History.htm'],
	        ['Economics Census ', 'History.htm'],
            ['State Income ', 'StateIncome.htm']
			
		],
		['Publications', 'publication.htm']

		
	],
	
	
	['Contact', 'Contact.htm']
];


