var myNavBar1 = new NavBar(0);
var dhtmlMenu;


//define menu items (first parameter specifies main menu width, second specifies sub menu width in pixels)

//add more menus simply by adding more "blocks" of same code below

myNavBar1.setSizes(0,0,1);

dhtmlMenu = new NavBarMenu(50, 125);
dhtmlMenu.addItem(new NavBarMenuItem("<IMG SRC='images/zybax3-h-prod_informat.gif' WIDTH=142 HEIGHT=29 BORDER=0>", "information.html"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> ClogMaster", "clog-master.html"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> OdourMaster", "odour-master.html"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> OdourMaster Tablets", "odour-master-tablets.html"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> PottiMaster", "potti-master.html"));
myNavBar1.addMenu(dhtmlMenu);

//set menu colors



//menuSetFont = "normal small VERDANA,ARIAL,HELVETICA";
//submenuSetFont = "normal, small, VERDANA,ARIAL,HELVETICA";
myNavBar1.setFonts("VERDANA,ARIAL,HELVETICA","normal","10","10","arial","normal","10","10");
myNavBar1.setColors("#FFFFFF", "#000000", "#C0C0C0", "#ffffff", "#666666", "#ffffff", "#535AAD", "#ffffff", "#29349C")
//uncomment below line to center the menu (valid values are "left", "center", and "right"

//myNavBar1.setAlign("right");

//myNavBar1.style.visibility="hidden";

myNavBar1.moveTo(609,42);



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(3);

}

