/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/

var MENU_ITEMS = [
	['Home','index.htm'],
	['Commercial<br>Insurance','commercial.htm', null,
		['Overview','commercial_overview.htm'],
		['Programs','commercial_programs.htm'],
		['Terms & Definitions','commercial_terms.htm'],
		['Get a Quote','commercial_quote.htm'],
	],
	['Personal<br>Insurance','personal.htm', null,
		['Overview','personal_overview.htm'],
		['Terms & Definitions','personal_terms.htm'],
		['Get a Quote','personal_quote.htm'],
	],
	['Life & Health<br>Insurance','life_health.htm', null,
		['Overview','life_health_overview.htm'],
		['Terms & Definitions','life_health_terms.htm'],
		['Get a Quote','life_health_quote.htm'],
	],
	['Financial Services','financial_services.htm'],
	['Forms','forms.htm'],
	['Links','links.htm'],
	['Contact Us','contact.htm', null,
		['Location','contact_location.htm'],
		['Team','contact_team.htm'],
	]
];

var MENU_ITEMS1 = [
	['Home','index.htm']
];


var MENU_ITEMS2 = [
	['Commercial<br>Insurance','commercial_overview.htm', null,
		['Overview','commercial_overview.htm'],
		['Programs','commercial_programs.htm'],
		['Terms & Definitions','commercial_terms.htm'],
		['Get a Quote','commercial_quote.htm'],
	],
	['Personal<br>Insurance','personal_overview.htm', null,
		['Overview','personal_overview.htm'],
		['Terms & Definitions','personal_terms.htm'],
		['Get a Quote','personal_quote.htm'],
	],
	['Life & Health<br>Insurance','life_health_overview.htm', null,
		['Overview','life_health_overview.htm'],
		['Terms & Definitions','life_health_terms.htm'],
		['Get a Quote','life_health_quote.htm'],
	]
];


var MENU_ITEMS3 = [
	['Financial Services','financial_services.htm'],
	['Forms','forms.htm'],
	['Links','links.htm'],
	['Contact Us','contact.htm', null,
		['Location','contact_location.htm'],
		['Team','contact_team.htm'],
	]
];