/*
  --- 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', '/welcome/index', null,
	],
	['Services', '/products/bomaic', null,
		['Capabilities', '/products/capabilities'],
		['Features', '/products/features'],
		['Service Plans', '/products/plans'],
		['Rates', '/products/rates'],
	],
	['Getting Started', '/products/fl1', null,
		['What can I do', '/products/fl1'],
		['How does it work', '/products/fl2'],
		['Getting Set up', '/products/fl3'],
		['Making a call', '/products/fl4'],
		['The Details', '/products/fl5'],
	],
	['Help', '/support/index', null,
		['FAQs', '/support/faq'],
		['Customer Support', '/aboutus/contact'],
		['Call Features', '/support/callfeatures'],
	],
	['Secure Login', '/user/login', null,
	],
];

var MENU_ITEMSLG = [
	['Home', '/welcome/index', null,
	],
	['Services', '/products/bomaic', null,
		['Capabilities', '/products/capabilities'],
		['Features', '/products/features'],
	],
	['View Account', '/contacts/list', null,
		['Contacts', '/contacts/listcontact'],
		['Groups', '/contacts/listgroup'],
		['Account Info', '/user/acct'],
		['Import', '/contacts/import'],
		['Export', '/contacts/export']
	],
	['Help', '/support/index', null,
		['FAQs', '/support/faq'],
		['Customer Support', '/aboutus/contact'],
		['Getting Started', '/products/fl1'],
		['Call Features', '/support/callfeatures'],

	],
	['Logout', '/user/logout', null,
	],
];

var MENU_ITEMSHOME = [
	['Home', '/welcome/index', null,
	],
	['Services', '/products/bomaic', null,
	],
	['Getting Started', '/products/fl1', null,
	],
	['Help', '/support/index', null,
		['FAQs', '/support/faq'],
		['Customer Support', '/aboutus/contact'],
		['Call Features', '/support/callfeatures'],
	],
	['Secure Login', '/user/login', null,
	],
];

var MENU_ITEMSLGHOME = [
	['Home', '/welcome/index', null,
	],
	['Services', '/products/bomaic', null,
	],
	['View Account', '/contacts/list', null,
	],
	['Help', '/support/index', null,
		['FAQs', '/support/faq'],
		['Customer Support', '/aboutus/contact'],
		['Getting Started', '/products/fl1'],
		['Call Features', '/support/callfeatures'],
	],
	['Logout', '/user/logout', null,
	],
];


