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.jpg' WIDTH=131 HEIGHT=48 BORDER=0>", "information.html"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> STEEL wipes", "steel.html"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> OFFICE wipes", "office.html"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> HEAVY-DUTY wipes", "heavy-duty.html"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> CAR wipes", "car-wipes.html"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> LITE wipes", "lite-wipes.html"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> SANITISER wipes", "sanitiser.html"));
dhtmlMenu.addItem(new NavBarMenuItem("&nbsp;> GRAFFITI wipes", "graffiti.html"));

myNavBar1.addMenu(dhtmlMenu);

//set menu colors

myNavBar1.setColors("#FFFFFF", "#000000", "#C0C0C0", "#ffffff", "#666666", "#000000", "#C0C0C0", "#ffffff", "#FFA521")

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(630,0);



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);

}

