<!--
function onLoad() {
	loadMenus();
	}
function loadMenus() {
    //Dynamic Menus
    window.myMenu = new Menu();
    myMenu.addMenuItem("my menu item A");
    myMenu.addMenuItem("my menu item B");
    myMenu.addMenuItem("my menu item C");
    myMenu.addMenuItem("my menu item D"); 

    window.mBlack = new Menu("Black");
    mBlack.addMenuItem("Please make a selection: ", "top.window.location='javascript:void(0)'");
    mBlack.addMenuItem("Bill Jackson", "top.window.location='bill.html'");
    mBlack.addMenuItem("Joe Whittington", "top.window.location='joe.html'");
    mBlack.addMenuItem("Tom Young", "top.window.location='tom.html'"); 
    mBlack.addMenuItem("Steve Wollstein", "top.window.location='steve.html'"); 
    mBlack.addMenuItem("Polly Russell", "top.window.location='polly.html'"); 
    mBlack.addMenuItem("George Robinson", "top.window.location='george.html'"); 
    mBlack.addMenuItem("Rochelle Hunt", "top.window.location='shelly.html'"); 
    mBlack.addMenuItem("* * close * *", "top.window.location='javascript:void(0)'");
    

    window.mBlack2 = new Menu("Black2");
    mBlack2.addMenuItem("Please Make a selection", "top.window.location='javascript:void(0)'");
    mBlack2.addMenuItem("abanet.org/family/", "top.window.location='http://www.abanet.org/family/'");  
    mBlack2.addMenuItem("alacourt.org/", "top.window.location='http://www.alacourt.org/'");
    mBlack2.addMenuItem("law.ua.edu/famlaw/", "top.window.location='http://www.law.ua.edu/famlaw/'");
    mBlack2.addMenuItem("divorcesupport.com/", "top.window.location='http://www.divorcesupport.com/'");
    mBlack2.addMenuItem("divorceonline.com/", "top.window.location='http://www.divorceonline.com/'");
    mBlack2.addMenuItem("divorcecare.com/", "top.window.location='http://www.divorcecare.com/'");
    mBlack2.addMenuItem("divorcecentral.com/", "top.window.location='http://www.divorcecentral.com/'");
    mBlack2.addMenuItem("* * close * *", "top.window.location='javascript:void(0)'");


    window.mBlack3 = new Menu("Black3");
    mBlack3.addMenuItem("  ", "top.window.location='javascript:void(0)'");
    mBlack3.addMenuItem(" ", "top.window.location='  '");
    mBlack3.addMenuItem(" ", "top.window.location=' '");
    mBlack3.addMenuItem(" ", "top.window.location=' '");

    window.mBlack4 = new Menu("Black4");
    mBlack4.addMenuItem("  ", "top.window.location='javascript:void(0)'");
    mBlack4.addMenuItem("no other items exist", "top.window.location='javascript:void(0)'");
 
    window.mBlack5 = new Menu("Black5");
    mBlack5.addMenuItem("Please make a selection: ", "top.window.location='javascript:void(0)'");
    mBlack5.addMenuItem(" ", "top.window.location=' ");
   

 mBlack.fontColor = "#ffffff";
    mBlack.bgColor = "#AAAAAA";
    mBlack.menuItemBgColor = "#3165CE";
    mBlack.menuHiliteBgColor = "#00205A";

 mBlack2.fontColor = "#ffffff";
    mBlack2.bgColor = "#AAAAAA";
    mBlack2.menuItemBgColor = "#3165CE";
    mBlack2.menuHiliteBgColor = "#00205A";
  
 mBlack3.fontColor = "#ffffff";
    mBlack3.bgColor = "#AAAAAA";
    mBlack3.menuItemBgColor = "#808080";
    mBlack3.menuHiliteBgColor = "#00205A";
    
 mBlack4.fontColor = "#ffffff";
    mBlack4.bgColor = "#AAAAAA";
    mBlack4.menuItemBgColor = "#E75100";
    mBlack4.menuHiliteBgColor = "#00205A";
 
 mBlack5.fontColor = "#ffffff";
    mBlack5.bgColor = "#AAAAAA";
    mBlack5.menuItemBgColor = "#42C700";
    mBlack5.menuHiliteBgColor = "#00205A";
    
            
myMenu.writeMenus();
	}
//-->
