/*
Top Navigational Bar II (By Mike Hall @ Brainjar.com)
Last updated: 00/05/08
Permission granted and modified by Dynamicdrive.com to include script in archive
For this and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

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, 100);
dhtmlMenu.addItem(new NavBarMenuItem("NHSOG", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Home", "/"));
dhtmlMenu.addItem(new NavBarMenuItem("News", "news.htm"));
dhtmlMenu.addItem(new NavBarMenuItem("Projects", "projects.htm"));
dhtmlMenu.addItem(new NavBarMenuItem("About NHSOG", "aboutus.htm"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(100, 100);
dhtmlMenu.addItem(new NavBarMenuItem("Resources", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Statewide", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Belknap Co", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Carroll Co", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Cheshire Co", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Coos Co", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Grafton Co", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Hillsborough Co", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Merrimack Co", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Rockingham Co", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Strafford Co", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Sullivan Co", ""));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(100, 100);
dhtmlMenu.addItem(new NavBarMenuItem("Links", "hotlinks.htm"));
dhtmlMenu.addItem(new NavBarMenuItem("State", "hotlinks.htm"));
dhtmlMenu.addItem(new NavBarMenuItem("Books", "hotlinks.htm"));
dhtmlMenu.addItem(new NavBarMenuItem("Organizations", "hotlinks.htm"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(100, 100);
dhtmlMenu.addItem(new NavBarMenuItem("Surnames", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Search", "search.asp"));
dhtmlMenu.addItem(new NavBarMenuItem("Browse", "search.asp"));
dhtmlMenu.addItem(new NavBarMenuItem("Post", ""));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(100, 100);
dhtmlMenu.addItem(new NavBarMenuItem("Cemeteries", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Search", "search.asp"));
dhtmlMenu.addItem(new NavBarMenuItem("Browse", "search.asp"));
dhtmlMenu.addItem(new NavBarMenuItem("About NHOGA", "nhoga/index.htm"));
myNavBar1.addMenu(dhtmlMenu);

//set menu colors (border, header foreground, header background, hdr hi fore, hdr hi back, item foreground, item background, item hilite fore, item hilite back)
myNavBar1.setColors("#000000", "#000000", "#009933", "#FFFFFF", "#999999", "#000000", "#cccccc", "#ffffff", "#000080")

//uncomment below line to center the menu (valid values are "left", "center", and "right"
myNavBar1.setAlign("left")

