// 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.htm'],	
	['Information', null, null,
		['Why Offshore', 'whyoffshore.htm'],
		['Select a Jurisdiction', 'selectjurisdiction.htm'],
		['Offshore Banking', 'offshorebanking.htm'],
		['The Legal Aspect', 'legalaspect.htm']
	],
	['Jurisdictions', null, null,
		['Seychelles', 'seychelles.htm'],
		['BVI', 'bvi.htm'],
		['Belize', 'belize.htm'],
		['Panama', 'panama.htm'],
		['Anguilla', 'anguilla.htm'],
		['Hong Kong', 'hk.htm']
	],
	['Our Fees', 'ourfees.htm'],
	['Contact us', 'contact.php']
];


