// 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 = [
	['SERVICES', 'services.html', null,
		['Accounting and Tax','services-accounting.html'],
		['Audit & Assurance','services-audits.html'],
		['Healthcare Industry','services-healthcare.html'],
		['CFO / Controllership','services-cfo.html'],
		['Consulting','services-consulting.html'],
		['QuickBooks Consulting','services-quickbooks.html'],
		['Niche Industries','services-niche-industries.html'],
	],
	['ABOUT US', 'aboutus.html', null,
		['J. B. Kramer, CPA','aboutus.html#jeff'],
		['L. E. Weisman, CPA','aboutus.html#les'],
	],
	['FINANCIAL TIPS', 'financial-tips.html', null,
		['Weekly Tax Tips','http://www.planningtips.com/Planning_Tips.asp?Co_ID=82061&Tip_ID=6801'],
		['Monthly Financial Tips','http://www.planningtips.com/Planning_Tips.asp?Co_ID=82061&Tip_ID=6803'],
	],
	['ONLINE ADVISOR', 'http://www.planningtips.com/Planning_Tips.asp?Co_ID=82061&Tip_ID=6850', null,
	],
	['NEWS', 'news.html', null,
	],
	['RELATED LINKS', 'links.html', null,
	],
];