var myNavBar1 = new NavBar(0);
var dhtmlMenu;

dhtmlMenu = new NavBarMenu(100, 0);
dhtmlMenu.addItem(new NavBarMenuItem("Home", "../English/home.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(100, 120);
dhtmlMenu.addItem(new NavBarMenuItem("Company", "../English/home.html"));
dhtmlMenu.addItem(new NavBarMenuItem("News", "../English/sales.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Mission Statement", "../English/mission.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Quality Assurance", "../English/quality.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Employees", "../English/employees.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(110, 120);
dhtmlMenu.addItem(new NavBarMenuItem("Services", "../English/services.html"));
dhtmlMenu.addItem(new NavBarMenuItem("General", "../English/services.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Customers", "../English/customers.html"));
dhtmlMenu.addItem(new NavBarMenuItem("For Sale!", "../English/forsale.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(100, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Products", "../English/products.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(100, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Careers", "../English/careers.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(100, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Contact", "../English/contact.html"));
myNavBar1.addMenu(dhtmlMenu);

//set menu colors
myNavBar1.setColors("#C4C4C4", "#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);
}