// 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 OUR BANK', 'about_central_florida_bank.html', null,
		['Location & Hours', 'location_and_hours.html'],
		['News & Announcements', 'news.html'],
		['Online Banking', 'cflsb_online_banking_login.html'],
		['Rate Information', 'bank_rates.asp'],
		['Online Calculators', 'calculators.html'],
		['Useful Information', 'useful_information.html'],
		['Quarterly Newsletters', 'quarterly_newsletters.html'],
		['Careers', 'careers.html'],
		['USA Patriot Act', 'usa_patriot_act.html'],
		['Privacy Policy', 'privacy_policy.html'],
		['Security Alerts', 'security_alerts.html'],
		['Site Map', 'site_map.html']
	],	
	['PERSONAL', 'personal_banking_central_florida.html', null,
		['Personal Checking', 'personal_checking_central_florida.html'],
		['Personal Savings', 'personal_saving_central_florida.html'],
		['Personal Loans', 'personal_loans_central_florida.html'],
		['Personal Services', 'personal_banking_services_central_florida.html']
	],
	['SMALL BUSINESS', 'small_business_banking_north_florida.html', null,
		['Business Checking', 'small_business_checking_north_florida.html'],
		['Business Loans', 'small_business_loans_north_florida.html'],
		['Business Services', 'small_business_service_north_florida.html']
	],
	['COMMERCIAL', 'commercial_banking_north_florida.html', null,
		['Commercial Checking', 'commercial_checking_north_florida.html'],
		['Commercial Loans', 'commercial_loans_north_florida.html'],
		['Commercial Services', 'commercial_service_north_florida.html']
	],
	['CONTACT US', 'contact.html']
];