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/product-butt.jpg' WIDTH=141 HEIGHT=30 BORDER=0>", "product.html"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> Handies", "product.html#handies"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> Knightrum", "product.html#knightrum"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> Meleco", "product.html#meleco"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> Sourcerer", "product.html#sourcerer"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> Zybax", "product.html#zybax"));
myNavBar1.addMenu(dhtmlMenu);

//set menu colors

myNavBar1.setColors("#FFFFFF", "#000000", "#C0C0C0", "#ffffff", "#666666", "#000000", "#C0C0C0", "#ffffff", "#808080")

menuSetFont = "normal small VERDANA,ARIAL,HELVETICA";
submenuSetFont = "normal, small, VERDANA,ARIAL,HELVETICA";
myNavBar1.setFonts("VERDANA,ARIAL,HELVETICA","normal","10","10","arial","normal","10","10");

//uncomment below line to center the menu (valid values are "left", "center", and "right"

//myNavBar1.setAlign("right");

//myNavBar1.style.visibility="hidden";

myNavBar1.moveTo(637,41);



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);

}

