// 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'}],
		
	],
	
['Jurisdiction', null, null,
		['Silvassa-I', 'silvassa1.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'
		['Silvassa-II', 'silvassa2.asp', {'tw':'_top'}],
		
		['Silvassa-III', 'silvassa3.asp', {'tw':'_top'}],
				['Silvassa-IV', 'silvassa4.asp', {'tw':'_top'}],
				['Vapi', 'vapi.asp', {'tw':'_top'}],
	],

	['Officers & Staff', null,null,
		['Cadre wise', 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'}],
],

		['Office wise', null, null,


		// this is how item scope settings are defined
		['Commissionerate Vapi', 'OPCommissionerateVapi.asp', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
		['Division-I Silvassa', 'DivisionIsilvassa.asp', {'tw':'_top'}],	
		['Division-II Silvassa', 'DivisionIIsilvassa.asp', {'tw':'_top'}],
		['Division-III Silvassa', 'DivisionIIIsilvassa.asp', {'tw':'_top'}],
		['Division-IV Silvassa', 'DivisionIVsilvassa.asp', {'tw':'_top'}],
		['Division-Vapi', 'DivisionVapi.asp', {'tw':'_top'}],
	],
],
['Excise & Customs', null,null,
		['Excise', 'Excise.asp'],
		['Customs', 'customs.asp'],
	],
	
	
		
	
	['Service Tax', 'servicetax.asp',{'tw':'_top'}],
		
		
	['Performance', null,null,
		['Revenue Realisation', null,null,
		['Excise', 'rexcise.asp'],
		['Customs', 'rcustom.asp'],	
		['Service Tax', 'rservicetax.asp'],
],
		['Top Ten Assessees', 'ttassessees.asp'],
		['Top Ten Commodities', 'ttcommodities.asp'],
		['Top Services', 'ttservices.asp'],
		['Audit', null,null,
		['Performance Report', 'auditperformance.asp',{'tw':'_top'}],
		['MLU Schedule', 'mluschedule.asp',{'tw':'_top'}],
		],
		['Brand rate DBK pending', 'dbk.asp'],
		['Major Defaulters', 'md.asp']
		],
	['E-Filing', null,null,
		['ACES', 'http://aces.gov.inl'],
				
	],
	['Establishment Orders', 'eo.asp',{'tw':'_top'}],
	
	[' Refund/Rebate Info.', 'cic.asp',{'tw':'_top'}],
	
	['List of Holidays ', 'http://india.gov.in/calendar/calendar.php',{'tw':'_top'}],
	['Right to Information Act ',null,null,

 		['RTI Portal','http://rti.gov.in',{'tw':'_top'}],
		['Public Information Officers Vapi','piov.asp',{'tw':'_top'}],
],

	['About Vapi & Silvassa', 'http://dnh.nic.in',{'tw':'_top'}],
        ['Public Grievances', 'http://pgportal.gov.in',{'tw':'_top'}],
	
	
	
	['Help Centre & RAC', null,null,
		['Help Centre(SSS)', 'helpcenter.asp',{'tw':'_top'}],
		['RAC', 'rac.asp',{'tw':'_top'}],
],

[ 'Contact & Links', null,null,
 		['Links', null,null,
		 		['CBEC','http://cbec.gov.in',{'tw':'_top'}],
				['Budget','http://indiabudget.nic.in',{'tw':'_top'}],
				['SERMON','http://sermon.nic.in',{'tw':'_top'}],
	    ],
		['Contact us','contact.asp',{'tw':'_top'}],	
],
	
	
];



