// 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 = [
	['Home', 'index.aspx'],
	['My GBL', null, null,
		['My Info', 'MyPersonalInfo.aspx'],
		['My Listings', 'MyListing.aspx'],
		['My Coupons', 'MyCoupons.aspx'],
		['My Billing', 'MyBilling.aspx'],
		['My Files', 'Myfiles.aspx'],
		['Add New Services', 'additionalservices.aspx'],
		['Add New Listing', 'SubmitAnotherCompany.aspx']
	],
	['About Us', 'aboutus.aspx'],
	['Sample Work', 'SampleWork.aspx'],
	['FAQ', 'FAQ.aspx'],
	['Employment', 'Jobs.aspx'],
];


