// 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 = [
	['Sites de plong&eacute;e', null, null,
		['Canada', null, null,
			['<b>Carte</b>', '../ca/ca-fr.html'],
			['Alberta', '../ca/ab-fr.html'],
			['Colombie-Britannique', '../ca/bc-fr.html'],
			['&Icirc;le-du-Prince-Edouard', '../ca/pe-fr.html'],
			['Manitoba', '../ca/mb-fr.html'],
			['Nouveau-Brunswick', '../ca/nb-fr.html'],
			['Nouvelle-&Eacute;cosse', '../ca/ns-fr.html'],
			['Nunavut', '../ca/nu-fr.html'],
			['Ontario', '../ca/on-fr.html'],
			['Qu&eacute;bec', '../ca/qc-fr.html'],
			['Saskatchewan', '../ca/sk-fr.html'],
			['Terre-Neuve et Labrador', '../ca/nf-fr.html'],
			['Territoires du Nord-Ouest', '../ca/nt-fr.html'],
			['Yukon', '../ca/yk-fr.html'],
		],
		['Caraïbes', null, null,
			['<b>Cuba</b>', '../cu/cu-fr.html'],
			['<b>Jamaïque</b>', '../jm/jm-fr.html'],
			['<b>Sainte Lucie</b>', '../lc/lc-fr.html'],
                ],
		['&Eacute;tats-Unis', null, null,
			['<b>Carte</b>', '../us/us-fr.html'],
			['Floride', '../us/fl-fr.html'],
			['Massachusetts', '../../us/ma-fr.html'],
			['New York', '../../us/ny-fr.html'],
			['Vermont', '../../us/vt-fr.html'],
                ],
		['Mexique', null, null,
			['<b>Carte</b>', '../mx/mx-fr.html'],
			['Quintana Roo', '../mx/qr-fr.html'],
                ],
		['Plan&egrave;te', '../planete-fr.html',
                ],
		['Saint Pierre et Miquelon', '../pm/pm-fr.html',
                ],
	],
	['Planification', null, null,
		['M&eacute;t&eacute;o', '../meteo-fr.html'],
		['Pr&eacute;vention', '../prevention-fr.html'],
		['Route', '../route-fr.html'],
		['Urgence', '../urgence-fr.html'],
		['Unit&eacute;s de sauvetage', '../sar-fr.html'],
		['Zones de sauvetage', '../sarmap-fr.html'],
	],
	['&Eacute;quipements', null, null,
		['Contaminants', '../contamination-fr.html'],
		['Entretien', '../maintenance-fr.html'],
		['Logiciels', '../logiciels-fr.html'],
		['Mat&eacute;riel', '../equipement-fr.html'],
		['Vision', '../conseil-vision-fr.html'],
	],
	['Formation', null, null,
		['Arch&eacute;ologie', '../archeo-maritime-edu-fr.html'],
		['Consommation d&acute;air', '../conseil-consom-fr.html'],
		['En vacances', '../conseil-vac-formation-fr.html'],
		['&Eacute;coles', '../ecoles-fr.html'],
		['F&eacute;d&eacute;rations', '../federations-fr.html'],
	],
	['Documentation', null, null,
		['D&eacute;compression', '../theorie-fr.html'],
		['&Eacute;diteurs', '../monographies-fr.html'],
		['&Eacute;paves', '../epaves-fr.html'],
		['Faune', '../faune-fr.html'],
		['Magazines', '../magazines-fr.html'],
		['Photographies', '../photos-fr.html'],
	],
	['Nouveaut&eacute;s', null, null,
		['&Agrave; surveiller', '../news-fr.html'],
		['L&eacute;gende des symboles', '../symboles-en.html'],
		['Plonger aux &Eacute;.U.', '../usdiving-fr.html'],

	],
];


