// 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.cctaxcol.com', {'tw' : 'content'}],
	

['Taxes', null, null,
		['Information','http://www.cctaxcol.com/advalorem.htm', {'tw' : 'content'}],
		['Record Search','http://www.cctaxcol.com/record.htm', {'tw' : 'content'}],
		['Tax Certificate Sale','http://www.charlottetaxsale.com/', {'tw' : 'content'}],
		['*New* Tax Deed Application','http://www.realtda.com/', {'tw' : 'content'}],
		['Tax Calendar','http://www.cctaxcol.com/calendar.htm', {'tw' : 'content'}]
	],
	['Hunting & Fishing', null, null,
		['Information','http://www.cctaxcol.com/haflicense.htm', {'tw' : '_blank'}],
		['Online License','http://www.wildlifelicense.com/fl/index.php', {'tw' : '_parent'}],
	['Freshwater Fishing','http://floridafisheries.org/', {'tw' : '_parent'}],
	['Saltwater Fishing','http://marinefisheries.org/', {'tw' : '_parent'}],
	['Hunting','http://myfwc.com/hunting/', {'tw' : '_parent'}],
	['Recreational License','http://myfwc.com/', {'tw' : '_parent'}],
		['Sub Agent Locations','http://www.cctaxcol.com/fahsubagents.htm', {'tw' : '_self'}]
	],
	['Vehicle & Vessels', null, null,
		['General Information','http://www.cctaxcol.com/tagsreg.htm', {'tw' : 'content'}],
		['Renew Online','http://www7.hsmv.state.fl.us/VirtualOffice/faces/lobby.jsp', {'tw' : 'content'}],
		['Vessel Registration','http://www.cctaxcol.com/flfacts.htm', {'tw' : 'content'}],
		['Registration & Title Packet','http://www.cctaxcol.com/packet.htm', {'tw' : 'content'}],
		['Florida DHSMV Homepage','http://flhsmv.gov/', {'tw' : 'content'}],
		['Area DL Offices','http://www.cctaxcol.com/dmvoffice.htm', {'tw' : 'content'}]
	],

['Online Payments', null, null,
		['Taxes','http://fl-charlotte-taxcollector.governmax.com/', {'tw' : 'content'}],
		['Business Tax','http://fl-charlotte-taxcollector.governmax.com/', {'tw' : 'content'}],
		['Installments','http://fl-charlotte-taxcollector.governmax.com/', {'tw' : 'content'}],
		['Renew Driver License','http://www7.hsmv.state.fl.us/VirtualOffice/faces/lobby.jsp', {'tw' : 'content'}],
		['Disabled Parking Permit','http://www7.hsmv.state.fl.us/VirtualOffice/faces/lobby.jsp', {'tw' : 'content'}],
		['Vehicle Registration','http://www7.hsmv.state.fl.us/VirtualOffice/faces/lobby.jsp', {'tw' : 'content'}],
		['Hunting & Fishing','http://www.myfwc.com/', {'tw' : 'content'}]
	],
['Downloads', null, null,
		['Current Tax Files','http://www.cctaxcol.com/currenttaxfiles.htm', {'tw' : 'content'}],
		['Delinquent Tax Files','http://www.cctaxcol.com/delinquenttaxfiles.htm', {'tw' : 'content'}],
		['Business Tax Files','http://www.cctaxcol.com/businesstaxfiles.htm', {'tw' : 'content'}],
		['Tax Forms','http://www.cctaxcol.com/taxforms.htm', {'tw' : 'content'}],
		['Business Tax Forms','http://www.cctaxcol.com/bustaxforms.htm', {'tw' : 'content'}],
		['DMV Forms','http://www.flhsmv.gov/html/forms.html', {'tw' : 'content'}],
		['Tourist Development Forms','http://www.cctaxcol.com/tdforms.htm', {'tw' : 'content'}],
		['Employment Application','http://www.cctaxcol.com/_private/employment.pdf', {'tw' : 'content'}]
	],
['Other Links', null, null,
		['Charlotte Co. Government','http://www.charlottecountyfl.com/government.asp', {'tw' : 'content'}],
		['Florida Tax Collectors','http://floridataxcollectors.com', {'tw' : 'content'}]
	]



];