// 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

/*
Fonctionnement :
la ligne "var = MENU_ITEMS+chiffre désigne l'objet "menu"
plusieurs menu de différentes tailles ont été créés

S'ensuit alors l'arborescence "à l'infini" du menu
*/

var MENU_ITEMS2 = [
	['Soci&eacute;t&eacute;', './societe/societe-presentation.php', null,
    	['Chiffres','./societe/societe-chiffres.php'],
    	['Histoire','./societe/societe-histoire.php'],
    	['Technologies', './societe/societe-technos.php'],
    	['Talents','./societe/societe-talents.php'],
    	['Références','./societe/societe-references.php']
	]
];

var MENU_ITEMS3 = [
	['Offres', './offres/offres_accueil.php', null,
		['Solution entreprise',null,null,
	    	['Assurance Vie','./offres/assurance_vie.php'],
			['D&eacute;cisionnel',null],
	    	['SI-RH', null],
	    	['Sant&eacute;',null]
		],
    	['Services', null,null,
	    	['Migration de données','./offres/migration_donnees.php'],
	    	['Conversion de systèmes','./offres/conversion_systeme.php'],
	    	['TRA', './offres/tra.php'],
	    	['TMA','./offres/tma.php'],
	    	['D&eacute;veloppement',null],
	    	['Conseil','./offres/conseil.php'],
	    	['Optimisation de la production','./offres/optimisation_production.php']
    	],
    	['Comp&eacute;tences',null,null,
	    	['Open source','./offres/open_source.php'],
	    	['.NET', null],
	    	['Gestion de projet','./offres/gestion_projet.php']
    	]
	]
];

var MENU_ITEMS4 = [
	['Ressources Humaines', null ,null,
		['Int&eacute;grateur de talents', './RH/integrateur-de-talents.php'],
		['Consultez nos offres', './RH/consultez-nos-offres.php'],
		['D&eacute;posez votre CV', './RH/deposez-votre-cv.php']
	]
];

var MENU_ITEMS5 = [
	['Extranet', './extranet/extranet.php', null]
];

var MENU_ITEMS6 = [
	['Blog', './blog/index.php?cat=1', null,
    	['Blog collaborateurs','./blog/index.php?cat=3'],
    	['Blog m&eacute;tiers','./blog/index.php?cat=4'],
    	['Blog News','./blog/index.php?cat=5']
	]
];