var myNavBar1 = new NavBar(0);
var dhtmlMenu;

dhtmlMenu = new NavBarMenu(100, 0);
dhtmlMenu.addItem(new NavBarMenuItem("Accueil", "../French/home.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(100, 120);
dhtmlMenu.addItem(new NavBarMenuItem("Compagnie", "../French/home.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Nouvelles", "../French/sales.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Mission d'entreprise", "../French/mission.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Assurance qualité", "../French/quality.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Employés", "../French/employees.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(110, 120);
dhtmlMenu.addItem(new NavBarMenuItem("Services", "../French/services.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Général", "../French/services.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Clients", "../French/customers.html"));
dhtmlMenu.addItem(new NavBarMenuItem("À vendre!", "../French/forsale.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(100, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Produits", "../French/products.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(100, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Carrières", "../French/careers.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(100, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Contact", "../French/contact.html"));
myNavBar1.addMenu(dhtmlMenu);

//set menu colors
myNavBar1.setColors("#C0C0C0", "#484848", "#C4E0E0", "#ffffff", "#006699", "#484848", "#cccccc", "#ffffff", "#006699")
var fullWidth;

function init()
{
  fullWidth = 801 - (isMinNS4 && getWindowHeight() < getPageHeight() ? 16 : 0);
  myNavBar1.resize(fullWidth);
  myNavBar1.create();
  myNavBar1.setzIndex(2);
  //UNCOMMENT BELOW LINE TO MOVE MENU DOWN 50 pixels
  myNavBar1.moveTo(2, 108);
}
