var menuItemWidth = 180;
var menuItemHeight = 19;



function MSchangeimage(elt,srcname)
{
elt.src='/images/nav/'+srcname;
}





var menuTimers = new Array(menuLengths.length);

/**
 * This function is used throughout the script to obtain
 * a reference to a page element given its ID. This
 * reference can then be used to set variables, event
 * handlers, etc.
 */
function getObj(id) {
    if (document.getElementById) { // DOM-compliant browsers (MSIE5, NSN6, O5)
        return document.getElementById(id);
    } else if (document.all) { // MSIE4
        return document.all[id];
    } else if (document.layers) { // NSN4
        return document.layers[id];
    } else { // Trap DHTML-impaired browsers 
        //alert("Your browser does not support DHTML!");
        return false;
    }
}


/**
 * This function is used throughout the script to obtain
 * a reference to a page element's style given its ID.
 * This reference can then be used to set style properties
 * like position and visibility.
 */
function getStyleObj(id) {
    if (document.getElementById || // DOM-compliant browsers (MSIE5, NSN6, O5)
        document.all) {// or MSIE 4
			// changed this to verify we have an object before returning 1
			if(getObj(id)) {
				return getObj(id).style;
			}
    } else return getObj(id); // NSN4
}


/**
 * This function displays a menu given its 1-based index.
 * For example, showMenu(6) will display the menu that is
 * defined by <DIV ID="menu6"> in the document.
 */
function MSshowMenu(index,curitem) {
    // Make sure this menu is not marked to be closed. This
    // cancels any previous request to close this menu.
	
    if (menuTimers[index-1]) clearTimeout(menuTimers[index-1]);

    // Immediately close any other menus so as to avoid
    // having more than one menu open at once (which is
    // quite ugly).
    for (i=1;i<=menuLengths.length;i++)
        if (i!=index) closeMenu(i);

    // Get a reference to the style of the menu to be displayed.
    var menu = getStyleObj("menu"+index);

    // Make sure we got a valid reference, and make the menu visible.
    if (menu) menu.visibility = "visible";

    // Display the 'active' version of the menu button.
//    if (document.images) document.images["menubutton"+index].src = menuOverButtons[index-1].src;
}

/**
 * This function sets a menu to be closed after a brief
 * delay given its index. For example, hideMenu(3) will
 * cause the menu that is defined by <DIV ID="menu3"> to
 * be hidden after a brief delay.
 */
function MShideMenu(index) {
    // Cancel any previous closing timer for this menu
    if (menuTimers[index-1]) clearTimeout(menuTimers[index-1]);

    // Close the menu after a delay of 500ms (1/2 second).
    menuTimers[index-1] = setTimeout("closeMenu('"+index+"');",500);
}

/**
 * This function closes a popup menu immediately if it
 * has been marked to be closed in the menuClosingFlags array.
 */
function closeMenu(index) {
    // Get a reference to the style of the menu to be closed.
    var menu = getStyleObj("menu"+index);

    // Make sure we got a valid reference, and hide the menu.
    if (menu) menu.visibility = "hidden";

}

/**
 * This function is called every time the user's mouse
 * is over a menu item, hilighting that menu item and
 * holding the menu that contains it open.
 */
function overMenuItem() {
    // Each menu item has a 'hilightitem' variable that
    // contains a reference to the <div> that contains
    // the hilighted version of the menu item. We use that
    // reference here to make that hilighted menu item
    // visibile.
    this.hilightitem.visibility='visible';

    // Each menu item has a 'menuid' variable that contains
    // the integer ID of the menu that it belongs to
    // (e.g. 2 if it belongs to "menu2"). By calling the
    // showMenu() function for that menu, we ensure that that
    // menu stays open.
    MSshowMenu(this.menuid);
}

/**
 * This function is called every time the user's mouse
 * leaves a menu item, un-hilighting that menu item and
 * closing the menu that contains it after a delay.
 */
function outMenuItem() {
    // Each menu item has a 'hilightitem' variable that
    // contains a reference to the <div> that contains
    // the hilighted version of the menu item. We use that
    // reference here to hide that hilighted menu item.
    this.hilightitem.visibility='hidden';

    // Each menu item has a 'menuid' variable that contains
    // the integer ID of the menu that it belongs to
    // (e.g. 8 if it belongs to "menu8"). By calling the
    // hideMenu() function for that menu, we indicate that
    // the menu closes after a delay if the mouse doesn't
    // move to another menu item that will keep it open.
    MShideMenu(this.menuid);
}

/**
 * This function is called when the user clicks on a
 * menu item. The URL associated with that menu item is
 * then loaded.
 */
function clickMenuItem() {
    if (this.url) { // There is a URL associated with this item
        window.location = this.url;
    }
}

/**
 * This function finishes setting up the menus once the rest
 * of the page has loaded. It performs the following adjustments:
 *
 *    -> Sets the dimensions and positions of the menus and each of the
 *       menu items. Some of these attributes have been set already
 *       using CSS, but some browsers (especially NSN4) have a habit
 *       of ignoring them.
 *    -> Sets up the event handlers for the menu items, which detect and
 *       react to the user's mouse passing over menu items by hilighting
 *       them and closing the menu when the user's mouse leaves it, and
 *       load the correct URL when a menu item is clicked on. This method
 *       allows NSN4 to have onMouseOver/onMouseOut/onClick event handlers
 *       on page elements that are not links.
 *
 * This function is called by the onLoad event handler for this window
 * as soon as the document has finished loading.
 */
window.onload=setupMenus; // Assign to onLoad event handler
function setupMenus() {
    if (document.layers) { // This section is for Netscape 4 only
        for (menuid=1;menuid<=menuLengths.length;menuid++) { // For each menu
            // Get the menu object
            var menu = getObj("menu"+menuid);

            // Set its 'clip' width and height. This forces NSN4 to fill in
            // the background color behind the whole menu area.
            menu.clip.width = menuItemWidth + 2;
            menu.clip.height = (menuItemHeight+1) * menuLengths[menuid-1] + 1;

            // Set the background color of the menu to force NSN4 to fill it
            // using the new 'clip' dimensions we just specified.
            menu.document.bgColor="#000000";

            for (i=1;i<=menuLengths[menuid-1];i++) { // For each menu item

                // Each menu item is actually composed of two <DIV> tags:
                // one for the menu item's regular appearance, and one for
                // what the menu item should look like when the user's mouse
                // passes over it. We start by obtaining references to each
                // of these page elements. Since they are nested inside the
                // menu DIV, we can't use the getObj function, so we use
                // eval() to grab them directly:
                var item = eval("menu.document.menu"+menuid+"item"+i);
                var onitem = eval("menu.document.menu"+menuid+"item"+i+"on");

                // Dynamically set the vertical position of each menu item,
                // leaving a 1-pixel gap between each (NSN4 ignores any
                // attempt to do this using CSS).
                item.top = (menuItemHeight + 1) * (i-1) + 1;
                onitem.top = (menuItemHeight + 1) * (i-1) + 1;

                // Dynamically set the 'clip' dimensions and background colors
                // of each of the menu items. Again, we're forcing NSN4 to
                // fill the full width and height of each menu item.
                item.clip.width = menuItemWidth;
                item.clip.height = menuItemHeight;
                item.document.bgColor="#FFFF99";
                onitem.clip.width = menuItemWidth;
                onitem.clip.height = menuItemHeight;
                onitem.document.bgColor="#0099FF";

                // When the user's mouse is over a menu item, we want to display
                // the highlighted version of the menu item (which is hidden by
                // default). The functions overMenuItem() and outMenuItem() are
                // responsible for showing and hiding the highlighted versions of
                // the menu items. Since these 'mouseover' and 'mouseout' events
                // can come from both the normal and hilighted menu item
                // under different conditions, we need a way for these functions
                // to access the hilighted menu item no matter which of the two
                // versions of the menu item ('item' and 'onitem') triggers them.
                // What we do is attach a variable called 'hilightitem' to both
                // of them containing a reference to the highlighted menu item
                // ('onitem'). The functions can then use this reference to show
                // and hide the hilighted item as appropriate.
                item.hilightitem = onitem;
                onitem.hilightitem = onitem;

                // The onverMenuItem() and outMenuItem() functions also need to
                // know what menu the menu item that triggered them belongs to,
                // so that they can close or keep open that menu as appropriate.
                // So we store the menu ID in a variable called 'menid'
                // attached to each menu item (and its highlighted version).
                item.menuid = menuid;
                onitem.menuid = menuid;

                // We also record the URL associated with each menu item, which
                // will be used by the clickMenuItem() function to load the URL
                // when the menu item is clicked on. The URL is fetched from the
                // menuURLs array created above.
                var url = menuURLs[menuid-1][i-1];
                item.url = url;
                onitem.url = url;

                // Finally, we set the onMouseOver/onMouseOut/onClick event
                // handlers for each menu item (and its highlighted version) so
                // that they call the overMenuItem(), outMenuItem(), and 
                // clickMenuItem() functions. We also set the types of events
                // that the menu items should react to. This is the only way to
                // get NSN4 to attach onMouseOver/onMouseOut/onClick event
                // handlers to anything but links.
                var eTypes = Event.MOUSEOVER | Event.MOUSEOUT | Event.CLICK;
                item.captureEvents(eTypes);
                onitem.captureEvents(eTypes);
                item.onmouseover = overMenuItem;
                onitem.onmouseover = overMenuItem;
                item.onmouseout = outMenuItem;
                onitem.onmouseout = outMenuItem;
                item.onclick = clickMenuItem;
                onitem.onclick = clickMenuItem;
            }
        }
    } else { // This section is for all other browsers
        for (menuid=1;menuid<=menuLengths.length;menuid++) { // For each menu

            // The menus' sizes and background colors are already set using CSS,
            // since Opera doesn't like dynamically setting page element sizes
            // with JavaScript.
		   
			                for (i=1;i<=menuLengths[menuid-1];i++) { // For each menu item

                // Each menu item is actually composed of two <DIV> tags:
                // one for the menu item's regular appearance, and one for
                // what the menu item should look like when the user's mouse
                // passes over it. We start by obtaining references to each
                // of these page elements and their styles.
                var item = getObj("menu"+menuid+"item"+i);

                var onitem = getObj("menu"+menuid+"item"+i+"on");
                var itemstyle = getStyleObj("menu"+menuid+"item"+i);
                var onitemstyle = getStyleObj("menu"+menuid+"item"+i+"on");

                // Dynamically set the vertical position of each menu item,
                // leaving a 1-pixel gap between each. All other style attributes
                // are set using CSS for compatibility with Opera.
                if (itemstyle) itemstyle.top = (menuItemHeight + 1) * (i-1) + 1;
                if (onitemstyle) onitemstyle.top = (menuItemHeight + 1) * (i-1) + 1;
                
                // Set the mouse cursor for the menu items to look like a
                // hand. This is for MSIE only. DOM-compliant browsers like
                // NSN6 will use the cursor:pointer setting in the CSS.
                if (navigator.appName=="Microsoft Internet Explorer") {
                    if (itemstyle) itemstyle.cursor = "hand";
                    if (onitemstyle) onitemstyle.cursor = "hand";
                }

                // When the user's mouse is over a menu item, we want to display
                // the highlighted version of the menu item (which is hidden by
                // default). The functions overMenuItem() and outMenuItem() are
                // responsible for showing and hiding the highlighted versions of
                // the menu items. Since these 'mouseover' and 'mouseout' events
                // can come from both the normal and hilighted menu item
                // under different conditions, we need a way for these functions
                // to access the hilighted menu item no matter which of the two
                // versions of the menu item ('item' and 'onitem') triggers them.
                // What we do is attach a variable called 'hilightitem' to both
                // of them containing a reference to the highlighted menu item
                // ('onitem'). The functions can then use this reference to show
                // and hide the hilighted item as appropriate.
                if(onitemstyle) item.hilightitem = onitemstyle;
                if(onitemstyle) onitem.hilightitem = onitemstyle;

                // The onverMenuItem() and outMenuItem() functions also need to
                // know what menu the menu item that triggered them belongs to,
                // so that they can close or keep open that menu as appropriate.
                // So we store the menu ID in a variable called 'menid'
                // attached to each menu item (and its highlighted version).
                if(item) item.menuid = menuid;
                if(onitem) onitem.menuid = menuid;

                // We also record the URL associated with each menu item, which
                // will be used by the clickMenuItem() function to load the URL
                // when the menu item is clicked on. The URL is fetched from the
                // menuURLs array created above.
                var url = menuURLs[menuid-1][i-1];
                if(item) item.url = url;
                if(onitem) onitem.url = url;

                // Finally, we set the onMouseOver/onMouseOut event handlers for
                // each menu item (and its highlighted version) so that they
                // call the overMenuItem() and outMenuItem() functions. We could
                // have just set these as attributes in the <DIV> tags, but since
                // NSN4 doesn't support that we'll keep things tidy and do it the
                // same way as we did above for that browser.
                if(item) item.onmouseover = overMenuItem;
                if(onitem) onitem.onmouseover = overMenuItem;
                if(item) item.onmouseout = outMenuItem;
                if(onitem) onitem.onmouseout = outMenuItem;
                if(item) item.onclick = clickMenuItem;
                if(onitem) onitem.onclick = clickMenuItem;
            }
        }
    }
    MenuScriptLoaded = true;

}

/**
 * Compensate for the NSN4 resize bug by reloading the page
 * whenever the window is resized.
 */
function handleResize() {
  location.reload();
  return false;
}
if (document.layers) {
  window.onresize = handleResize;
}
