var SEPARATOR_IMG = '~1';
var SEPARATOR_URL = '~2';
var iNbMenu;

	iNbMenu = 8;
	aMenu = new Array(iNbMenu);
	
	/* Sous-menu de Société */
	
	aMenu[0] = new Array(5);
	aMenu[0][0] = 'Présentation' + SEPARATOR_URL + '../presentation/presentation.html#' + SEPARATOR_IMG; 
	aMenu[0][1] = 'Qui sommes nous ?' + SEPARATOR_URL + '../presentation/presentation.html#' + SEPARATOR_IMG;
	aMenu[0][2] = 'Infrastructure' + SEPARATOR_URL + '../presentation/presentation.html#infrastructure' + SEPARATOR_IMG;
	aMenu[0][3] = 'Pôles de compétences' + SEPARATOR_URL + '../presentation/presentation.html#competences' + SEPARATOR_IMG;
	aMenu[0][4] = 'Organigramme' + SEPARATOR_URL + '../presentation/presentation.html#organigramme' + SEPARATOR_IMG;

	aMenu[1] = new Array(7);
	aMenu[1][0] = 'Organisation' + SEPARATOR_URL + '../organisation/organisation.html#' + SEPARATOR_IMG; 
	aMenu[1][1] = 'Le Bureau d\'Études' + SEPARATOR_URL + '../organisation/organisation.html#' + SEPARATOR_IMG;
	aMenu[1][2] = 'Nos Formateurs' + SEPARATOR_URL + '../organisation/organisation.html#formateurs' + SEPARATOR_IMG;
	aMenu[1][3] = 'Nos Développeurs' + SEPARATOR_URL + '../organisation/organisation.html#developpeurs' + SEPARATOR_IMG;
	aMenu[1][4] = 'Nos Techniciens' + SEPARATOR_URL + '../organisation/organisation.html#techniciens' + SEPARATOR_IMG;
	aMenu[1][5] = 'Notre Équipe Commerciale' + SEPARATOR_URL + '../organisation/organisation.html#commerciale' + SEPARATOR_IMG;
	aMenu[1][6] = 'Le Marketing' + SEPARATOR_URL + '../organisation/organisation.html#marketing' + SEPARATOR_IMG;


	aMenu[2] = new Array(3);
	aMenu[2][0] = 'Équipements' + SEPARATOR_URL + '../equipement/equipement.html#' + SEPARATOR_IMG; 
	aMenu[2][1] = 'Informatique' + SEPARATOR_URL + '../equipement/equipement.html#' + SEPARATOR_IMG;
	aMenu[2][2] = 'Salles de Formation' + SEPARATOR_URL + '../equipement/equipement.html#sallesformation' + SEPARATOR_IMG;

	aMenu[3] = new Array(5);
	aMenu[3][0] = 'Références' + SEPARATOR_URL + '../references/references.html#' + SEPARATOR_IMG; 
	aMenu[3][1] = 'Infrastructure' + SEPARATOR_URL + '../references/references.html#' + SEPARATOR_IMG;
	aMenu[3][2] = 'Architecture' + SEPARATOR_URL + '../references/references.html#architecture' + SEPARATOR_IMG;
	aMenu[3][3] = 'Industrie' + SEPARATOR_URL + '../references/references.html#industrie' + SEPARATOR_IMG;
	aMenu[3][4] = 'Images de Synthèse' + SEPARATOR_URL + '../references/references.html#imagessynthese' + SEPARATOR_IMG;
	
	aMenu[4] = new Array(6);
	aMenu[4][0] = 'Publications' + SEPARATOR_URL + '../publications/publications.html#' + SEPARATOR_IMG;
	aMenu[4][1] = 'Abonnements' + SEPARATOR_URL + '../publications/publications.html#abonnements' + SEPARATOR_IMG;
	aMenu[4][2] = 'AriCad-NEWS' + SEPARATOR_URL + '../publications/publications.html#aricadnews' + SEPARATOR_IMG;
	aMenu[4][3] = 'Lettres Techniques' + SEPARATOR_URL + '../publications/publications.html#lettrestechniques' + SEPARATOR_IMG;
	aMenu[4][4] = 'Revue de Presse' + SEPARATOR_URL + '../publications/publications.html#revuedepresse' + SEPARATOR_IMG;
	aMenu[4][5] = 'Archives' + SEPARATOR_URL + '../publications/publications.html#archives' + SEPARATOR_IMG;
	
	aMenu[5] = new Array(4);
	aMenu[5][0] = 'Offre Emploi' + SEPARATOR_URL + '../emploi/emploi.html#' + SEPARATOR_IMG; 
	aMenu[5][1] = 'Postes à pourvoir' + SEPARATOR_URL + '../emploi/postes.html' + SEPARATOR_IMG;
	aMenu[5][2] = 'Délégation de Compétence' + SEPARATOR_URL + '../emploi/emploi.html#' + SEPARATOR_IMG;
	aMenu[5][3] = 'Recrutement Sécurisé' + SEPARATOR_URL + '../emploi/emploi.html#recrutement' + SEPARATOR_IMG;
	
	aMenu[6] = new Array(3);
	aMenu[6][0] = 'Plan d\'accès' + SEPARATOR_URL + '../plan-acces/acces.html#' + SEPARATOR_IMG; 
	aMenu[6][1] = 'en Voiture' + SEPARATOR_URL + '../plan-acces/acces.html#voiture' + SEPARATOR_IMG;
	aMenu[6][2] = 'en Transports' + SEPARATOR_URL + '../plan-acces/acces.html#transports' + SEPARATOR_IMG;

	
	aMenu[7] = new Array(1);
	aMenu[7][0] = 'Intranet' + SEPARATOR_URL + '../intranet/intranet.html#' + 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;
}

