// 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', 'http://www.njchildsupport.info/', ],
	['Cases', null, null,
	    ['Pasqua v. Council ', 'http://www.njchildsupport.info/pasqua.html',null,
	        ['AOC Directive 15-08', 'http://www.njchildsupport.info/directive-15-08.pdf', {'tw':'_blank'}],
	        ['AOC Directive 2-04', 'http://www.njchildsupport.info/aoc.pdf', {'tw':'_blank'}]
	    ],
	    ['Lepis v. Lepis', 'http://www.njchildsupport.info/lepis.htm',]
	 ],
	 ['Forms', null, null,
		['Child Support Guidelines', 'http://www.njchildsupport.info/guidelines.htm',],
		['Case Information Statement', 'http://www.judiciary.state.nj.us/prose/10482.pdf',{'tw':'_blank'}],
		['Application for Emergent Relief', 'http://www.judiciary.state.nj.us/appdiv/forms/10498_fact_sheet.pdf',{'tw':'_blank'}]	
	 ],       
	['Links', null, null,
	        ['Recent Emergent Appellate Applications', 'http://www.njchildsupport.info/emergent.htm',], 
	        ['Judiciary Directory', 'http://www.judiciary.state.nj.us/directory/judgtara.pdf',{'tw':'_blank'}],
	        ['County Offices', 'http://www.njchildsupport.info/county.htm',]	        
	        
	],         
	['Search', 'http://www.njchildsupport.info/search.htm'],
];

