
if(bln_loadMMenus) {

    timegap         = 500;
    followspeed     = 5;
    followrate      = 40;
    suboffset_top   = 7; 
    suboffset_left  = 10;

    /*
    Style Properties Array
    -----------------------------
    Mouse Off Font Color
    Mouse Off Background Color
    Mouse On Font Color
    Mouse On Background Color
    Menu Border Color 
    Font Size in pixels
    Font Style (italic or normal)
    Font Weight (bold or normal)
    Font Name
    Menu Item Padding
    Sub Menu Image
    3D Border & Separator bar
    3D High Color
    3D Low Color
    Current Page Item Font Color (leave this blank to disable)
    Current Page Item Background Color (leave this blank to disable)
    Top Bar image (Leave this blank to disable)
    Menu Header Font Color (Leave blank if headers are not needed)
    Menu Header Background Color (Leave blank if headers are not needed)
    Menu Item Separator Color
    */
    
    menu_style_1 = [
        "#AFAEAF",
        "#F7FBF7",
        "#998F99",
        "#E5E2E1",
        "#E5E2E1",
        11,
        "normal",
        "normal",
        "verdana, arial, helvetica, sans-serif",
        8,
        "/img/arrow_r_FFF.gif",
        0,
        ,
        ,
        ,,,,,,
    ]
    
    menu_style_2 = [
        "#003366",
        "#F4F6F3",
        "#003366",
        "#828282",
        "#828282",
        11,
        "normal",
        "bold",
        "verdana, arial, helvetica, sans-serif",
        2,
        "/img/arrow_r_000.gif",
        0,
        ,,,,,,,,
    ]    
    
    // Other Style Properties
    // --------------------------
    menu_border_width   = 1;
    
   if (navigator.appVersion.indexOf("MSIE 6") != -1){
//        menu_effect = "Fade(duration=0.40)";
//        menu_effect = "Fade(duration=0.20);Shadow(color='#666666',direction=135,strength=4)";
//        menu_effect = "blinds(bands=1,direction=down,duration=.2)";
//        menu_effect = "Shadow(color='#9EA5AB',direction=155,strength=4)";
        menu_effect = "";

    } else {
        menu_effect = "";
    }

    /*
    Menu Properties Array
    -----------------------------
    Menu Name - This is needed in order for the menu to be called
    Menu Top - The Top position of the menu in pixels
    Menu Left - The Left position of the menu in pixels
    Menu Width - Menus width in pixels
    Menu Border Width 
    Screen Position - here you can use "center;left;right;middle;top;bottom" or a combination of "center:middle"
    Properties Array - this is set higher up, as above
    Always Visible - allows the menu item to be visible at all time (1=on/0=off)
    Alignment - sets the menu elements text alignment, values valid here are: left (default), right or center
    Filter - Text variable for setting transitional effects on menu activation - see above for more info
    Follow Scrolling - Tells the menu item to follow the user down the screen (visible at all times) (1=on/0=off)
    Horizontal Menu - Tells the menu to become horizontal instead of top to bottom style (1=on/0=off)
    Keep Alive - Keeps the menu visible until the user moves over another menu or clicks elsewhere on the page (1=on/0=off)
    Position of TOP sub image left:center:right
    Set the Overall Width of Horizontal Menu to 100% and height to the specified amount (Leave blank to disable)
    Right To Left - Used in Hebrew for example. (1=on/0=off)
    Open the Menus OnClick - leave blank for OnMouseover (1=on/0=off)
    ID of the div you want to hide on MouseOver (useful for hiding form elements)
    Background image for menu when BGColor set to transparent
    Scrollable Menu
    Reserved for future use
    "Description Text", "URL", "Alternate URL", "Status Text", "Separator Bar (1=on/0=off)"
    */

    addmenu(menu=[		    
        "what",0,0,145,menu_border_width,,menu_style_1,,,menu_effect,,,,,,,,,,,,,
        "&nbsp;FOR COMPANIES","http://www.popperandco.com/what_companies.php","",,1,
        "&nbsp;FOR INVESTORS","http://www.popperandco.com/what_investors.php","",,1,
        "&nbsp;VENTURE CREATION","http://www.popperandco.com/what_venture_creation.php","",,1
    ])
    
	addmenu(menu=[		    
        "who",0,0,190,menu_border_width,,menu_style_1,,,menu_effect,,,,,,,,,,,,,
        "&nbsp;OVERVIEW","http://www.popperandco.com/who_overview.php","",,1,
        "&nbsp;CAROLINE POPPER MD MPH","http://www.popperandco.com/who_popper.php","",,1,
        "&nbsp;KENNETH WALZ","http://www.popperandco.com/who_walz.php","",,1,
        "&nbsp;SHANE CLIMIE PHD","http://www.popperandco.com/who_climie.php","",,1,
	  "&nbsp;PATTI DOHERTY RN","http://www.popperandco.com/who_doherty.php","",,1  
    ])
    
    // required call to build menus    
    dumpmenus();

}