// menu_items.js file
// comments block here

var MENU_ITEMS =[
	['Home', "../index.php"],
	
	['About Us', null,
		[' Vision Statement', "../about/vision.php"],
		[' Meet Our Team', "../about/team.php"],
		[' Why Choose Us', "../about/choose.php"],
		[' Contact Us', "../contact.htm"],
	],
	
	['Services', null,
		[' Investment Strategies', "../services/invest.php"],
		[' Retirement Investing', "../services/retirement.php"],
		[' 401K & Profit Sharing', "../services/401k.php"],
		[' Company Plans', "../services/coplans.php"],
		[' College/Education Investing', "../services/college.php"],
		[' Mortgage Needs', "",
			[' Initial Meeting', "../services/meeting.php"],
			[' Speed Up the Process', "../services/speed.php"],
			[' What\'s a Credit Score?', "../services/creditscore.php"],
			[' Improve Credit Score', "../services/improvecredit.php"],
			[' Fixed Rate Mortgages', "../services/fixedrate.php"],
			[' Adjustable Rate Mortgages', "../services/arm.php"],
			[' Choosing the Best Program', "../services/program.php"],
		],
		[' Long-Term Care', "../services/longterm.php"],
		[' Life Insurance', "../services/lifeins.php"],
		[' Trusts', "../services/trusts.php"],
	],
	
	['Calculators', "../java/",
		[' Mortgage Qualifier', "../java/mortgage.php"],
		[' Refinance Breakeven', "../java/refi.php"],
		[' College Savings', "../java/college.php"],
		[' Roth vs Traditional IRA', "../java/iras.php"],
		[' Retirement Income', "../java/retirement.php"],
	],
	
	['Clients', null,
		[' Current Profiles', "../clients/testimonials.php"],
		[' Past Profiles', "../clients/archives.php"],
		[' Events', "../clients/clientevents.php"],
	],

	['Library', "../library/index.php"],
	
	['Links', "../links/index.php"],
	
	['Calendar', "../calendar/index.php"],
	
];

