/*
Top Navigational Bar II (By Mike Hall @ Brainjar.com)
Last updated: 00/05/08
Permission granted to 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(60, 0);
dhtmlMenu.addItem(new NavBarMenuItem("Home", "http://www.southlake.net/all-home"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(70, 120);
dhtmlMenu.addItem(new NavBarMenuItem("Personal", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Who Are We?", "who.html"));
dhtmlMenu.addItem(new NavBarMenuItem("The Grandchild", "braden-lk.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Naomi's Page", "pets.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Genealogy", "genealogy.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Religion", "religion.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Seasonal Page", "seasonal.html"));
dhtmlMenu.addItem(new NavBarMenuItem("In Memory of Dennis' Sister", "Kriss.html"));
dhtmlMenu.addItem(new NavBarMenuItem("In Memory of Carolyn's Aunt Sena", "Larsena.html"));

myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(85, 120);
dhtmlMenu.addItem(new NavBarMenuItem("Photos /Travel", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Air Force Days", "airforce.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Albuquerque", "albuquerque.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Bisti Badlands", "bisti.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Maui", "maui.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Other", "other.html"));

myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(85, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Computers /Imaging", ""));
dhtmlMenu.addItem(new NavBarMenuItem("PC Technology", "pctechnology.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Scanners", "scanner.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Image Processing", "images.html"));
 
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(90, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Science /Science Fiction", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Science and Space", "science.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Science Fiction and Fantasy", "scifi.html"));
dhtmlMenu.addItem(new NavBarMenuItem("British Science fiction", "british.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Dennis' Stories", "stories-t.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(80, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Business /Legal", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Southlake Services", "business.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Scam Alert", "scam.htm"));
dhtmlMenu.addItem(new NavBarMenuItem("Legal", "copyright.html"));
 
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(60, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Social Issues", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Gay, Lesbian, Bisexual", "s-glbt.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Transgender", "trans-gx.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Seattle PFLAG Banner", "http://www.southlake.net/pflag-bt/index.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Seattle PFLAG Website", "http://seattle-pflag.org"));
dhtmlMenu.addItem(new NavBarMenuItem("PFLAG-TNET", "http://www.Youth-Guard.Org/pflag-t-net/index.htm"));
dhtmlMenu.addItem(new NavBarMenuItem("Romana's Story", "romana.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Religious Issues", "religionz.html"));
 
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(80,150);
dhtmlMenu.addItem(new NavBarMenuItem("Menu Select", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Basic Homepage", "http://www.southlake.net/home"));
dhtmlMenu.addItem(new NavBarMenuItem("Master Homepage","http://www.southlake.net/all-home"));
dhtmlMenu.addItem(new NavBarMenuItem("Domain Page","http://www.southlake.net"));
 
 
myNavBar1.addMenu(dhtmlMenu);

//set menu colors
myNavBar1.setColors("#ff0066", "#000000", "#ffcc99", "#000000", "#ffffcc", "#000000", "#66ccff", "#000000", "#99cc66")

//uncomment below line to center the menu (valid values are "left", "center", and "right"
//myNavBar1.setAlign("center")

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(2);
}

var myNavBar2 = new NavBar(0);
var dhtmlMenx;

//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

dhtmlMenx = new NavBarMenu(60, 0);
dhtmlMenx.addItem(new NavBarMenuItem("Home", "http://www.southlake.net"));
myNavBar2.addMenu(dhtmlMenx);

dhtmlMenx = new NavBarMenu(70, 120);
dhtmlMenx.addItem(new NavBarMenuItem("Personal", ""));
dhtmlMenx.addItem(new NavBarMenuItem("Who Are We?", "who.html"));
dhtmlMenx.addItem(new NavBarMenuItem("The Grandchild", "braden-lk.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Naomi's Page", "pets.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Genealogy", "genealogy.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Religion", "religion.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Seasonal Page", "seasonal.html"));
dhtmlMenx.addItem(new NavBarMenuItem("In Memory of Dennis' Sister", "Kriss.html"));
dhtmlMenx.addItem(new NavBarMenuItem("In Memory of Carolyn's Aunt Sena", "Larsena.html"));

myNavBar2.addMenu(dhtmlMenx);

dhtmlMenx = new NavBarMenu(85, 120);
dhtmlMenx.addItem(new NavBarMenuItem("Photos /Travel", ""));
dhtmlMenx.addItem(new NavBarMenuItem("Air Force Days", "airforce.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Albuquerque", "albuquerque.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Bisti Badlands", "bisti.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Maui", "maui.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Other", "other.html"));

myNavBar2.addMenu(dhtmlMenx);

dhtmlMenx = new NavBarMenu(85, 150);
dhtmlMenx.addItem(new NavBarMenuItem("Computers /Imaging", ""));
dhtmlMenx.addItem(new NavBarMenuItem("PC Technology", "pctechnology.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Scanners", "scanner.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Image Processing", "images.html"));
 
myNavBar2.addMenu(dhtmlMenx);

dhtmlMenx = new NavBarMenu(90, 150);
dhtmlMenx.addItem(new NavBarMenuItem("Science /Science Fiction", ""));
dhtmlMenx.addItem(new NavBarMenuItem("Science and Space", "science.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Science Fiction and Fantasy", "scifi.html"));
dhtmlMenx.addItem(new NavBarMenuItem("British Science fiction", "british.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Dennis' Stories", "stories-t.html"));
myNavBar2.addMenu(dhtmlMenx);

dhtmlMenx = new NavBarMenu(80, 150);
dhtmlMenx.addItem(new NavBarMenuItem("Business /Legal", ""));
dhtmlMenx.addItem(new NavBarMenuItem("Southlake Services", "business.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Scam Alert", "scam.htm"));
dhtmlMenx.addItem(new NavBarMenuItem("Legal", "copyright.html"));
 
myNavBar2.addMenu(dhtmlMenx);

dhtmlMenx = new NavBarMenu(80,150);
dhtmlMenx.addItem(new NavBarMenuItem("Menu Selection", ""));
dhtmlMenx.addItem(new NavBarMenuItem("Basic Homepage", "http://www.southlake.net/home"));
dhtmlMenx.addItem(new NavBarMenuItem("Master Homepage","http://www.southlake.net/master/index.html"));
dhtmlMenx.addItem(new NavBarMenuItem("Domain Page","http://www.southlake.net"));

 
myNavBar2.addMenu(dhtmlMenx);

//set menu colors
myNavBar2.setColors("#ff0066", "#000000", "#ffcc99", "#000000", "#ffffcc", "#000000", "#66ccff", "#000000", "#99cc66")

//uncomment below line to center the menu (valid values are "left", "center", and "right"
//myNavBar2.setAlign("center")

var fullWidtx;

function init1() {

// Get width of window, need to account for scrollbar width in Netscape.

fullWidtx = getWindowWidth() 
- (isMinNS4 && getWindowHeight() < getPageHeight() ? 16 : 0);

myNavBar2.resize(fullWidtx);
myNavBar2.create();
myNavBar2.setzIndex(2);
}

var myNavBar3 = new NavBar(0);
var dhtmlMeny;

//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

dhtmlMeny = new NavBarMenu(60, 0);
dhtmlMeny.addItem(new NavBarMenuItem("Home", "http://www.southlake.net/home"));
myNavBar3.addMenu(dhtmlMeny);

dhtmlMeny = new NavBarMenu(70, 120);
dhtmlMeny.addItem(new NavBarMenuItem("Personal", ""));
dhtmlMeny.addItem(new NavBarMenuItem("Who Are We?", "who.html"));
dhtmlMeny.addItem(new NavBarMenuItem("The Grandchild", "braden-lk.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Naomi's Page", "pets.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Genealogy", "genealogy.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Religion", "religion.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Seasonal Page", "seasonal.html"));
dhtmlMeny.addItem(new NavBarMenuItem("In Memory of Dennis' Sister", "Kriss.html"));
dhtmlMeny.addItem(new NavBarMenuItem("In Memory of Carolyn's Aunt Sena", "Larsena.html"));

myNavBar3.addMenu(dhtmlMeny);

dhtmlMeny = new NavBarMenu(85, 120);
dhtmlMeny.addItem(new NavBarMenuItem("Photos /Travel", ""));
dhtmlMeny.addItem(new NavBarMenuItem("Air Force Days", "airforce.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Albuquerque", "albuquerque.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Bisti Badlands", "bisti.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Maui", "maui.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Other", "other.html"));

myNavBar3.addMenu(dhtmlMeny);

dhtmlMeny = new NavBarMenu(85, 150);
dhtmlMeny.addItem(new NavBarMenuItem("Computers /Imaging", ""));
dhtmlMeny.addItem(new NavBarMenuItem("PC Technology", "pctechnology.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Scanners", "scanner.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Image Processing", "images.html"));
 
myNavBar3.addMenu(dhtmlMeny);

dhtmlMeny = new NavBarMenu(90, 150);
dhtmlMeny.addItem(new NavBarMenuItem("Science /Science Fiction", ""));
dhtmlMeny.addItem(new NavBarMenuItem("Science and Space", "science.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Science Fiction and Fantasy", "scifi.html"));
dhtmlMeny.addItem(new NavBarMenuItem("British Science fiction", "british.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Dennis' Stories", "stories-t.html"));
myNavBar3.addMenu(dhtmlMeny);

dhtmlMeny = new NavBarMenu(80, 150);
dhtmlMeny.addItem(new NavBarMenuItem("Business /Legal", ""));
dhtmlMeny.addItem(new NavBarMenuItem("Southlake Services", "business.html"));
dhtmlMeny.addItem(new NavBarMenuItem("Scam Alert", "scam.htm"));
dhtmlMeny.addItem(new NavBarMenuItem("Legal", "copyright.html"));
 
myNavBar3.addMenu(dhtmlMeny);


dhtmlMeny = new NavBarMenu(80,150);
dhtmlMeny.addItem(new NavBarMenuItem("Menu Selection", ""));
dhtmlMeny.addItem(new NavBarMenuItem("Basic Homepage", "http://www.southlake.net/home"));
dhtmlMeny.addItem(new NavBarMenuItem("Master Homepage","http://www.southlake.net/master/index.html"));
 
myNavBar3.addMenu(dhtmlMeny);

//set menu colors
myNavBar3.setColors("#ff0066", "#000000", "#ffcc99", "#000000", "#ffffcc", "#000000", "#66ccff", "#000000", "#99cc66")

//uncomment below line to center the menu (valid values are "left", "center", and "right"
//myNavBar3.setAlign("center")

var fullWidty;

function init2() {

// Get width of window, need to account for scrollbar width in Netscape.

fullWidty = getWindowWidth() 
- (isMinNS4 && getWindowHeight() < getPageHeight() ? 16 : 0);

myNavBar3.resize(fullWidty);
myNavBar3.create();
myNavBar3.setzIndex(2);
}
