// 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.html'],

	['About Us', null, null,
		['Haitian Stock Exchange', 'hse.html'],
		['History', 'history.html' 	],
		['Organizational Hierarchy', 'orghie.html' 	],
		['About The Sponcer', 'abtSpncr.html' 	],		
	],

	['Regulations', null, null,
		['Haiti Stock Exchange', 'reg_HSE.html'],
		['Approvals','Approvals.pdf'],
		['The Issuers', null, null,
			['Who Are The Issures ?', 'Reg_whoareissuers.html'	],
			['How To Become Issuers ?', 'Reg_tobecomeissuer.html'	],			
		],

		['Stock Brokers',null, null,
			['Who Are The Brokers ?', 'Reg_tobecomebroker.html'	],
			['How To Become Brokers ?', 'Reg_whoarecomebroker.html'	],			
		],
		
	],
	
	['Quote', null, null,
		['Fixed Income', 'Quote_fixedimcome.html'],
		['Government Securities', 'Quote_Govsec.html'],
		['Common Stocks', 'Quote_Comontock.html'],
	],
	
	['F.Q.A', null, null,
		['Government Securities', 'FAQ_GovSec.html'],
		['Fixed Income', 'FAQ_FixedIncome.html'],
	],
	
	['Education', null, null,
		['Fundamental of Finance', 'Edu_fundamntl.html'],
		['Intro to Investment', 'Edu_intro_inv.html'],
		['Intro to Finance', 'Edu_intro.html'],
		['Ethics in Finance', 'Edu_ethics.html'],
		['L "exique', 'exiques.html'],
		['Pyramid of Risk', 'Edu_pyramid.html'],
	],

	['News', null, null,
		['Le Matin', 'lematin.html'],
	],
	
	['Contact', null, null,
		['Counsels', 'Con_Counsels.html'],
		['Discussion Group', 'Con_DisGrp.html'],
		['Important Dates', 'Con_ImpDates.html'],
		['Founders Gallery', 'fonders.html'],
		['Promoters Gallery', 'promoters.html'],
		['Sponsor', 'sponsor.html'],
	],

];


