var myNavBar1 = new NavBar(0);
var tempMenu;

myNavBar1.setFonts("Verdana", "plain", "bold", "8pt",
  "Verdana","plain","normal", "8pt");

myNavBar1.setSizes(2,0,1);

tempMenu = new NavBarMenu(0, 106);
tempMenu.addItem(new NavBarMenuItem("&nbsp;&nbsp;&nbsp;&nbsp;Navigation&nbsp;&nbsp;&nbsp;&nbsp;", "#"));
tempMenu.addItem(new NavBarMenuItem("&nbsp;Home", "index.html"));
tempMenu.addItem(new NavBarMenuItem("&nbsp;Stuff", "stuff.html"));
tempMenu.addItem(new NavBarMenuItem("&nbsp;Band Info", "band.html"));
tempMenu.addItem(new NavBarMenuItem("&nbsp;Links", "links.html"));
tempMenu.addItem(new NavBarMenuItem("&nbsp;Contact Me", "mailto:disco@cats.ucsc.edu"));
myNavBar1.addMenu(tempMenu);

var fullWidth;

function init() {

  // Get width of window, need to account for scrollbar width in Netscape.

  fullWidth = getWindowWidth() 
    - (isMinNS4 && getWindowHeight() < getPageHeight() ? 16 : 0);

  myNavBar1.create();
  myNavBar1.setzIndex(1);
}

myNavBar1.moveTo(16,102);
