<!--
//******************************************************************************
// Active DHTML/CSS Menu - 2002~2009
// Media Premier inc.
// Gilles Gomez - alizesonline.com
// French version
//******************************************************************************


//******************************************************************************
//Here are the parameters of the menu bar
//
//Use as follow:
//
//	menu[nbItem]=new menuItem();
//	menu[nbItem].title="*** Title of the first item of the menu ***";
//	menu[nbItem].url0="*** http://url_of_page ***";
//	this.posLeft="*** x position of the menu ***";
//	this.width="*** width of the menu ***";
//
//	nbItem+=1;		*** Next menu Item ***
//
//	menu[nbItem]=new menuItem();
//	menu[nbItem].title="*** Title of the second item of the menu ***";
//	menu[nbItem].url0="*** http://url_of_page ***";
//	
//	menu[nbItem].item[1]="*** Title of the first line of the submenu ***";
//	menu[nbItem].url[1]="*** http://url_of_page ***";
//	menu[nbItem].family[1]="*** optional - to create several submenus ***";
//	
//	menu[nbItem].item[2]="Titel of the next line of the submenu";
//	menu[nbItem].url[2]="*** http://url_of_page ***";
//	menu[nbItem].family[2]="*** optional - to create several submenus ***";
//
//	nbItem+=1;		*** Next menu Item ***
//
//	...			*** And so on till the end of the menu ***
//
//	Here we go...
//
//******************************************************************************

menu[nbItem]=new menuItem();
menu[nbItem].title="Accueil";
menu[nbItem].url0=domainPath + "accueil.htm";
menu[nbItem].posLeft=330;
menu[nbItem].width=70;

nbItem+=1;

menu[nbItem]=new menuItem();
menu[nbItem].title="Analyse";
menu[nbItem].url0=domainPath + "analyse.htm";
menu[nbItem].posLeft=400;
menu[nbItem].width=70;

nbItem+=1;

menu[nbItem]=new menuItem();
menu[nbItem].title="Strat&eacute;gie";
menu[nbItem].url0=domainPath + "strategie.htm";
menu[nbItem].posLeft=470;
menu[nbItem].width=75;

nbItem+=1;

menu[nbItem]=new menuItem();
menu[nbItem].title="Planification";
menu[nbItem].url0=domainPath + "planification.htm";
menu[nbItem].posLeft=545;
menu[nbItem].width=95;

nbItem+=1;

menu[nbItem]=new menuItem();
menu[nbItem].title="Achats";
menu[nbItem].url0=domainPath + "achats.htm";
menu[nbItem].posLeft=640;
menu[nbItem].width=60;

nbItem+=1;

menu[nbItem]=new menuItem();
menu[nbItem].title="Conclusion";
menu[nbItem].url0=domainPath + "conclusion.htm";
menu[nbItem].posLeft=700;
menu[nbItem].width=90;

nbItem+=1;

menu[nbItem]=new menuItem();
menu[nbItem].title="Contact";
menu[nbItem].url0=domainPath + "contact.php";
menu[nbItem].posLeft=790;
menu[nbItem].width=70;
//-->
