var SEPARATOR_IMG = '~1';
var SEPARATOR_URL = '~2';
var iNbMenu;

	iNbMenu = 6;
	aMenu = new Array(iNbMenu);
	
	/* Sous-menu de Services */
	
	aMenu[0] = new Array(7);
	aMenu[0][0] = 'Formation' + SEPARATOR_URL + '../formation/formation.html#' + SEPARATOR_IMG; 
	aMenu[0][1] = 'Charte Qualité' + SEPARATOR_URL + '../formation/formation.html#' + SEPARATOR_IMG;
	aMenu[0][2] = 'Planning des Stages' + SEPARATOR_URL + '../formation/formation.html#planning' + SEPARATOR_IMG;
	aMenu[0][3] = 'Plans de Cours' + SEPARATOR_URL + '../formation/formation.html#plans' + SEPARATOR_IMG;
	aMenu[0][4] = 'Évaluation AutoCAD' + SEPARATOR_URL + '../formation/formation.html#evaluation' + SEPARATOR_IMG;
	aMenu[0][5] = 'Support' + SEPARATOR_URL + '../../support/hot-line/hotline.html#' + SEPARATOR_IMG;
	aMenu[0][6] = 'Trucs et Astuces' + SEPARATOR_URL + '../../societe/publications/publications.html#lettrestechniques' + SEPARATOR_IMG;

	aMenu[1] = new Array(7);
	aMenu[1][0] = 'Développement' + SEPARATOR_URL + '../developpement/developpement.html#' + SEPARATOR_IMG; 
	aMenu[1][1] = 'Charte Qualité' + SEPARATOR_URL + '../developpement/developpement.html#charte' + SEPARATOR_IMG;
	aMenu[1][2] = 'Compétences' + SEPARATOR_URL + '../developpement/developpement.html#competences' + SEPARATOR_IMG;
	aMenu[1][3] = 'AriBonus' + SEPARATOR_URL + '../developpement/developpement.html#aribonus' + SEPARATOR_IMG;
	aMenu[1][3] = 'AriGed' + SEPARATOR_URL + '../developpement/developpement.html#ariged' + SEPARATOR_IMG;
	aMenu[1][4] = 'AriElec' + SEPARATOR_URL + '../developpement/developpement.html#arielec' + SEPARATOR_IMG;
	aMenu[1][5] = 'AriCorrec' + SEPARATOR_URL + '../developpement/developpement.html#aricorrec' + SEPARATOR_IMG;
	aMenu[1][6] = 'AutoCharte' + SEPARATOR_URL + '../developpement/developpement.html#autocharte' + SEPARATOR_IMG;


	aMenu[2] = new Array(5);
	aMenu[2][0] = 'Bureau d\'Études' + SEPARATOR_URL + '../bureau-etudes/bureau.html#' + SEPARATOR_IMG; 
	aMenu[2][1] = 'Conseil et Méthode' + SEPARATOR_URL + '../bureau-etudes/bureau.html#conseil' + SEPARATOR_IMG;
	aMenu[2][2] = 'Études Mécaniques' + SEPARATOR_URL + '../bureau-etudes/bureau.html#etudesmecaniques' + SEPARATOR_IMG;
	aMenu[2][3] = 'Études Électriques' + SEPARATOR_URL + '../bureau-etudes/bureau.html#etudeselectriques' + SEPARATOR_IMG;
	aMenu[2][4] = 'Images de Synthèse' + SEPARATOR_URL + '../../support/banque-images/images.html#' + SEPARATOR_IMG;
	

	aMenu[3] = new Array(1);
	aMenu[3][0] = 'Support Technique' + SEPARATOR_URL + '../../support/assistance-technique/assistance.html#' + SEPARATOR_IMG; 
	
	
	aMenu[4] = new Array(1);
	aMenu[4][0] = 'Délégation' + SEPARATOR_URL + '../../societe/emploi/emploi.html#' + SEPARATOR_IMG; 
	
	
	aMenu[5] = new Array(4);
	aMenu[5][0] = 'Emploi' + SEPARATOR_URL + '../../societe/emploi/emploi.html#' + SEPARATOR_IMG; 
	aMenu[5][1] = 'Postes à pourvoir' + SEPARATOR_URL + '../../societe/emploi/postes.html' + SEPARATOR_IMG;
	aMenu[5][2] = 'Délégation de Compétence' + SEPARATOR_URL + '../../societe/emploi/emploi.html#delegation' + SEPARATOR_IMG;
	aMenu[5][3] = 'Recrutement Sécurisé' + SEPARATOR_URL + '../../societe/emploi/emploi.html#recrutement' + SEPARATOR_IMG;



function SplitOptionSsMenu(sOption, sType) {
var iPos1 = 0, iPos2 = 0;
var sRetValue = '';

	switch (sType) {
		case 'TXT':
			sRetValue = sOption.substr(0,sOption.indexOf(SEPARATOR_URL));
			break;
		case 'URL':
			iPos1 = sOption.indexOf(SEPARATOR_URL) + 2, sOption.length;
			iPos2 = sOption.indexOf(SEPARATOR_IMG), sOption.length;
			sRetValue = sOption.substring(iPos1, iPos2);
			break;
		case 'IMG':
			sRetValue = sOption.substr(sOption.indexOf(SEPARATOR_IMG) + 2,sOption.length);
			break;
	}
return sRetValue;
}
