// 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,
['Background', 'background.asp',{'tw':'_top'}],
		['Map', 'map.asp',{'tw':'_top'}],
		['Citizens Charter', 'citizencharter.asp',{'tw':'_top'}],	
	],
	['Jurisdiction', null, null,
	['Daman Commissionerate', 'hq.asp', {'tw':'_top'}],

		['North Daman Division', 'northdaman.asp', {'tw':'_top'}],
		// 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'
		['South Daman Division', 'southdaman.asp', {'tw':'_top'}],
		
		['Valsad Division', 'valsad.asp', {'tw':'_top'}],
		['Vapi Division', 'vapi.asp', {'tw':'_top'}],
				
	],
	['Officers and Employees',  null,null,
		['Group A Officers', 'groupa.asp',{'tw':'_top'}],
		['Group B Officers', 'groupb.asp',{'tw':'_top'}],
		['Group C Officers', 'groupc.asp',{'tw':'_top'}],
		['Group D Officers', 'groupd.asp',{'tw':'_top'}]
		
	],
	['Excise and Customs', null,null,
		['Excise', 'excise.asp'],
		['Customs', 'customs.asp']
		
	],
	
	
	['Service Tax ', 'servicetax.asp',{'tw':'_top'}
		
	],
	
	['Performance', null,null,
		['Revenue Realisation',null,null,
		['Excise','excisereports.asp'],
		['Customs','Customsreport.asp'],
		['Service Tax','Servicetaxreport.asp']
	],
		['Top Ten Assessees', 'ttassessees.asp'],
		['Top Ten Commodities', 'ttcommodities.asp'],
		['Audit', 'audit.asp'],
		['Major Defaulter', 'md.asp']
		],
		
	
	['E-Filing', null,null,
		['ACES', 'http://aces.gov.in/',{'tw':'_new'}]
				
	],

	['Establishment Orders', 'establishment.asp',{'tw':'_top'}],

        ['History of Posting', 'historyofposting.asp',{'tw':'_top'}],

        ['CIC Information ', 'cic.asp',{'tw':'_top'}],


	['List of Holidays ', 'http://india.gov.in/calendar/calendar.php'],
	
	['Right to Information Act ',null,null,
		['RTI Portal','http://rti.gov.in'],
		['Public Information Officers Daman', 'rti.asp']
	],
	
	['About Daman', 'http://daman.nic.in',{'tw':'_new'}],
	
	
	
];



