
/*
Top Navigational Bar II
*/

var myNavBar1 = new NavBar(0);
var dhtmlMenu;

//define menu items (first parameter of NavBarMenu specifies main category width, second specifies sub category width in pixels)
//add more menus simply by adding more "blocks" of same code below

// dhtmlMenu = new NavBarMenu(100, 0);
// dhtmlMenu.addItem(new NavBarMenuItem("Home", "http://www.xlgateway.com"));
// myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(120, 120);
dhtmlMenu.addItem(new NavBarMenuItem("Xichlo Home", "index.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Site Map", "site-map.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Company Center", "company-ctr.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(120, 130);
dhtmlMenu.addItem(new NavBarMenuItem("Products", "xichlo-products.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Adding Value", "products-adding-value.html"));
dhtmlMenu.addItem(new NavBarMenuItem("First Response", "products-first-response.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Mobile MMS", "products-mobile-mms.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Mobile SMS", "products-mobile-sms.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Mobile Premium SMS", "products-mobile-premium-sms.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Number Look-up", "products-number-lookup.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(120, 120);
dhtmlMenu.addItem(new NavBarMenuItem("Infrastructure", "xichlo-infrastructure.html"));
dhtmlMenu.addItem(new NavBarMenuItem("The Interfaces", "infrastructure-interfaces.html "));
dhtmlMenu.addItem(new NavBarMenuItem("The Network", "infrastructure-network.html"));
dhtmlMenu.addItem(new NavBarMenuItem("The Platform", "infrastructure-platform.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(120, 170);
dhtmlMenu.addItem(new NavBarMenuItem("Support", "xichlo-support.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Account Management", "support-account-mgmt.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Service Management", "support-service-mgmt.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Testing and Implementation", "support-test-implement.html "));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(120, 160);
dhtmlMenu.addItem(new NavBarMenuItem("About Xichlo", "about-xichlo.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Corporate Policies", "about-corp-policy.html "));
dhtmlMenu.addItem(new NavBarMenuItem("Management Team", "about-xichlo-mgmt.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Our Clients", "about-xichlo-clients.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Vision, Mission and Values", "about-xichlo-vision.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Working at Xichlo", "about-working-xichlo.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Xichlo Evolution", "about-xichlo-evoluation.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(153, 155);
dhtmlMenu.addItem(new NavBarMenuItem("Contact Us", "contact-form.php"));
dhtmlMenu.addItem(new NavBarMenuItem("Careers", "xichlo-careers.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Commercial Quotations", "xichlo-commercial-quotes.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Global Presence", "xichlo-presence.html "));
dhtmlMenu.addItem(new NavBarMenuItem("Partnership Opportunities", "xichlo-partnership.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Public Relations", "xichlo-public-relations.html "));
myNavBar1.addMenu(dhtmlMenu);

//set menu display parameters
myNavBar1.setColors("#AA7711", "#774400", "#DDAA44", "#FFFFFF", "#DD0000", "#000000", "#F0D5A0", "#FF0000", "#FFFFFF");
myNavBar1.setSizes(1,4,1);
myNavBar1.setFonts("Verdana", "", "", "10px", "Verdana", "", "", "10px");
myNavBar1.setAlign("left");
myNavBar1.moveTo(0,80);

var fullWidth;

/*
function init() {

  // Get width of window, need to account for scrollbar width in Netscape.

  fullWidth = getWindowWidth()
    - (isMinNS4 && getWindowHeight() < getPageHeight() ? 16 : 0);

  myNavBar1.resize(fullWidth);
  myNavBar1.create();
  myNavBar1.setzIndex(2);
  //UNCOMMENT BELOW LINE TO MOVE MENU DOWN 50 pixels
  //myNavBar1.moveTo(0, 50);
}
*/
