if (isNS||isIE)
{
    g_nMenuTop = 93;    // top of sub menus (for Netscape only)
    g_nMenuLeft = 0;    // left for sub menu.
    g_sNavSpacer = 20;  // distance for spacer between buttons (for Netscape)
    g_nIEMenuTop = 101;  // top of sub menus (for IE)
    g_sNavIESpacer = 20 // distance for spacer between buttons (for IE)
    
    // menuItem( <menuitem name>,   // name that is directly correlated in HTML
    //           <image on>,        // Image to use when selected
    //           <image off> )      // Image to use when NOT selected
    //           

    // This next line handles building a new menu.
    // To add a new menu, simply add a new item in the group, 
    // and add it to the page
    g_mnuGroup =
    new menuGroup(
            new menuItem( 'releases',    g_sIMGLoc + 'releases_on.gif',
								          g_sIMGLoc + 'releases_off.gif' ),
								  
            new menuItem( 'resources',    g_sIMGLoc + 'resources_on.gif',
								          g_sIMGLoc + 'resources_off.gif' ),
								  
            new menuItem( 'info',    g_sIMGLoc + 'info_on.gif',
								          g_sIMGLoc + 'info_off.gif' ),

			      new menuItem( 'newswire', g_sIMGLoc + 'newswire_on.gif',
			                    g_sIMGLoc + 'newswire_off.gif' ));
			                         
    // Always call this function right AFTER the menu group is built
    initMenu( 67, 100 );

    // the following lines are used to 'bind' a menu to it's submenus.
    // 
    createNavLayer(   1,
                      'nav_releases',
                      "By Date|" + g_sDynamicLoc + "PressReleases.asp?Type=Date",
                      "By Category|" + g_sDynamicLoc + "PressReleases.asp?Type=Category");
                      
    createNavLayer(   1,
                      'nav_resources',
                      "Press Releases|" + g_sDynamicLoc + "PressReleases.asp?ReleaseType=PressRelease",
                      "Photos|" + g_sDynamicLoc + "PressReleases.asp?ReleaseType=Photo",
					  "Executive Speakership|" + g_sStaticLoc + "speakership/",
                      "Events|" + g_sStaticLoc + "archive/events/index.htm",
                      "Speeches|" + g_sStaticLoc + "archive/speeches/index.htm",
                      "Virtual Press Kits|" + g_sDynamicLoc + "PressReleases.asp?ReleaseType=VPK",
                      "Microprocessor Quick<br>Reference Guide|" + g_sStaticLoc + "kits/quickref.htm");
                      
    createNavLayer(   1,
                      'nav_info',
                      "Corporate Overview|" + g_sStaticLoc + "CorpOverview.htm",
                      "Executive Bios|" + g_sStaticLoc + "ExecBios.htm",
                      "Financial Info|" + g_sStaticLoc + "FinInfo.htm");
                      
    createNavLayer(   1,
                      'nav_newswire',
                      "Instant updates delivered to your mailbox|" + g_sDynamicLoc + "IntelNewswire.asp");
                      
    // And this must be called at the end of the sub menu generation.
    endMenuInit();
}


