/**********************************************************************
 * iNavigate.js  iNavigate 3.3                              Nov 11 2001
 *
 * 
 **********************************************************************/ 


/**********************************************************************
 *
 * Browser Class & Object
 *
 **********************************************************************/ 

function Browser()
{
    this.IE4plus  = false;
    this.IE51beta = false;
    this.Gecko    = false;
    this.Opera    = false;
    this.Mozilla  = false;
    this.Mac      = false;   
    this.Version  = 0;

    var sVersion = "";
    
    if (navigator.userAgent.indexOf('Opera') != -1)
    {
        this.Opera = true;

        sVersion = navigator.appVersion;
    }
    else if (navigator.userAgent.indexOf('Gecko') != -1)
    {
        this.Gecko = true;

        if (navigator.userAgent.indexOf('Netscape6') == -1)
        {
            this.Mozilla = true;
        }
        sVersion = navigator.appVersion;
    }
    else if (document.all)
    {
        this.IE4plus = true;

        //appVersion is not generally exact with IE 
        sVersion = navigator.userAgent.substring(navigator.userAgent.indexOf('MSIE ') + 5);

        //----check for IE 5.1 beta for OS X
        sVersion = sVersion.substring(0, 4);
        if (sVersion == '5.1b') this.IE51beta = true;
        //----

        sVersion = sVersion.substring(0, 3);
    }

    this.Version = Math.floor(parseFloat(sVersion) * 10) / 10;

    this.Mac = navigator.appVersion.indexOf('Macintosh') != -1 ? true : false

    if (this.IE4plus)
    {
        this.DisplayShow = '';
        this.DisplayHide = 'none';
    }
    else
    {
        this.DisplayShow = 'block';
        this.DisplayHide = 'none';
    }
}

var oBrowser = new Browser();

/**********************************************************************
 *
 * iNavigate Class & Object
 *
 **********************************************************************/

function iNavigate()
{
    this.Frames            = false;
    this.GroupName         = '';
    this.GroupTitle        = '';
    this.HomePage          = 'index.html';
    this.InitiallyOpen     = false;
    this.PreserveState     = true;
    this.RightToLeft       = false; 
    this.ConvertLink       = true;
    this.AutoClose         = false;
    this.AutoCloseCurrent  = false;
    this.ConvertParent     = false;
    this.MatchQueryString  = false;
    this.PageSearch        = new PageSearch();

    this.NodeBlankName     = /Blank/i;
    this.NodeMinusName     = 'Minus';
    this.NodePlusName      = 'Plus';

    this.NodePlusTitle     = 'Open Menu';
    this.NodeMinusTitle    = 'Close Menu';

    this.PointerName       = 'pointer';
    this.PointerBlankName  = 'blank';

    this.PathAsText        = false;
    this.PathSeparator     = '';
    this.Path              = '';

    this._oCurrentMenuItem ;
    this._nCurrentMenuNo   ;

    this._FrameWindow      ;
}

iNavigate.prototype.BeforeLoad        = iNavigate_BeforeLoad;
iNavigate.prototype.AfterLoad         = iNavigate_AfterLoad;
iNavigate.prototype.CloseAll          = iNavigate_CloseAll;
iNavigate.prototype.OpenAll           = iNavigate_OpenAll;
iNavigate.prototype.Locate            = iNavigate_Locate;
iNavigate.prototype.LocateFrame       = iNavigate_LocateFrame;
iNavigate.prototype.MoveNext          = iNavigate_MoveNext;
iNavigate.prototype.MovePrevious      = iNavigate_MovePrevious;
iNavigate.prototype.PrepareFrame      = iNavigate_PrepareFrame;

iNavigate.prototype.menuAll           = 'iNavigateAll';
iNavigate.prototype.menuId            = 'iNavigateMenu';
iNavigate.prototype.menuBodyId        = 'iNavigateMenuBody';
iNavigate.prototype.menuItemId        = 'iNavigateItem';
iNavigate.prototype.menuBoxId         = 'iNavigateMenuBox';
iNavigate.prototype.menuNodeId        = 'iNavigateMenuNode';
iNavigate.prototype.pointerId         = 'iNavigatePointer';
iNavigate.prototype.pathId            = 'iNavigatePath';

iNavigate.prototype.cookiePrefix      = 'iNavigate_';

iNavigate.prototype.menuNoAttr        = 'menuNo';
iNavigate.prototype.menuNodePathAttr  = 'nodePath';
iNavigate.prototype.menuNodeQueryAttr = 'nodeQuery';
iNavigate.prototype.currentMenuAttr   = 'menuCurrent';
iNavigate.prototype.openMenuAttr      = 'menuOpen';

var iNavigate = new iNavigate();

var xMenu;
var xMenuBody;
var xMenuBox;
var xMenuBoxPlusImage;
var xMenuBoxMinusImage;
var xHref;
var bReady = false;

function iNavigate_BeforeLoad()
{
    if (!oBrowser.IE4plus && !oBrowser.Gecko && !oBrowser.Opera) return;

    var i;

    if (iNavigate.AutoClose == true) iNavigate.PreserveState = false;

    if (iNavigate.GroupTitle.length == 0) iNavigate.GroupTitle = iNavigate.GroupName;

    //--------------------------------------------------
    // 
    //--------------------------------------------------
    var bFirstTime = GetGroupLoaded();

    var bLoadOpen = bFirstTime ? iNavigate.InitiallyOpen : false;

    if (bFirstTime) SetGroupLoaded();

    //--------------------------------------------------
    // 
    //--------------------------------------------------
    if (!iNavigate.Frames) iNavigate.PageSearch.Initialize(window);

    //--------------------------------------------------
    // close previously closed menus [asap]
    //--------------------------------------------------
    xMenu = GetElements(document, iNavigate.menuId, 'span');

    xMenuBody = new Array(xMenu.length);

    if (oBrowser.Mozilla) 
    {
        var oAll = GetFirstElement(document, iNavigate.menuAll, 'span');

        oAll.style.display = oBrowser.DisplayHide;
    }

    for (i=0; i < xMenu.length; i++)
    {
        xMenu[i].setAttribute(iNavigate.menuNoAttr, i);

        xMenuBody[i] = GetFirstElement(xMenu[i], iNavigate.menuBodyId, 'span');

        if (xMenuBody[i]) 
        {
            if (bLoadOpen)
            {
                SetMenuCookie(xMenu[i], true);
            }
            else
            {
                if (GetMenuCookie(xMenu[i]) == false)
                {
                    xMenuBody[i].style.display = oBrowser.DisplayHide;
                }
            }
        }
    }
    


    //--------------------------------------------------
    // find the current menu item
    //--------------------------------------------------
    var xItem = GetElements(document, iNavigate.menuItemId, 'a');

    xHref = new Array(xItem.length);

    for (i=0; i < xItem.length; i++)
    {
        xHref[i] = xItem[i].href;
    }

    if (!iNavigate.Frames)
    {
        for (i=0; i < xItem.length; i++)
        {
            oItem = xItem[i];
        
            if (iNavigate.PageSearch.MatchesLink(oItem) == true)
            {
                iNavigate._oCurrentMenuItem = oItem;
                iNavigate._nCurrentMenuNo   = i;

                _OpenAncestorNodes(oItem)

                _SetItemPointer(iNavigate._oCurrentMenuItem)
    
                break;
            }
        }
    }

    if (oBrowser.Mozilla) 
    {
        oAll.style.display = oBrowser.DisplayShow;
    }
    
    //--------------------------------------------------
    // activate menus
    //--------------------------------------------------
    xMenuBox           = new Array(xMenu.length);
    xMenuBoxPlusImage  = new Array(xMenu.length);
    xMenuBoxMinusImage = new Array(xMenu.length);

    for (i=0; i < xMenu.length; i++)
    {
        xMenuBox[i] = GetFirstElement(xMenu[i], iNavigate.menuBoxId, 'img');

        xMenuBox[i].setAttribute(iNavigate.menuNoAttr, i);

        xMenuBoxPlusImage[i]      = new Image();
        xMenuBoxPlusImage[i].src  = xMenuBox[i].src.replace(iNavigate.NodeBlankName, iNavigate.NodePlusName);
    
        xMenuBoxMinusImage[i]     = new Image();
        xMenuBoxMinusImage[i].src = xMenuBox[i].src.replace(iNavigate.NodeBlankName, iNavigate.NodeMinusName);
 
        _ActivateMenu(i);
    }
    bReady = true;
}


function iNavigate_PrepareFrame(oWindow)
{
    iNavigate.PageSearch = new PageSearch();

    iNavigate._FrameWindow = oWindow;
}


function iNavigate_LocateFrame()
{
    if (!oBrowser.IE4plus && !oBrowser.Gecko && !oBrowser.Opera) return;

    if (!bReady) return;

    //--------------------------------------------------
    // clear pointer from previous menu item
    //--------------------------------------------------
    _ClearItemPointer(iNavigate._oCurrentMenuItem)

    //--------------------------------------------------
    // 
    //--------------------------------------------------
    iNavigate.PageSearch.Initialize(iNavigate._FrameWindow);

    //--------------------------------------------------
    // find the current menu item
    //--------------------------------------------------
    var xItem = GetElements(document, iNavigate.menuItemId, 'a');

    if (iNavigate.AutoClose == true)
    {
        iNavigate_CloseAll();
    }

    if (oBrowser.Mozilla) 
    {
        var oAll = GetFirstElement(document, iNavigate.menuAll, 'span');

        oAll.style.display = oBrowser.DisplayHide;
    }

    for (i=0; i < xItem.length; i++)
    {
        oItem     = xItem[i];
        oMenuBox  = xMenuBox[i];
        oMenuBody = xMenuBody[i];
    
        if (iNavigate.PageSearch.MatchesLink(oItem) == true)
        {
            iNavigate._oCurrentMenuItem = oItem;
            iNavigate._nCurrentMenuNo   = i;

            _OpenAncestorNodes(oItem)

            _SetItemPointer(iNavigate._oCurrentMenuItem)

            break;
        }
    }

    if (oBrowser.Mozilla) 
    {
        oAll.style.display = oBrowser.DisplayShow;
    }

    //--------------------------------------------------
    // set menu box graphics
    //--------------------------------------------------
    for (i=0; i < xMenu.length; i++)
    {
        _SetMenuBox(i)
    }

    //--------------------------------------------------
    // Set Path to current Page
    //--------------------------------------------------
    _SetPath(iNavigate._FrameWindow, false);
}


function _OpenAncestorNodes(oItem)
{
    //--------------------------------------------------
    // open up all ancestor menus
    //--------------------------------------------------
    var i;

    for (i=0; i < xMenu.length; i++)
    {
        xMenu[i].setAttribute(iNavigate.currentMenuAttr, '0');
    }

    while (oItem)
    {
        if (oBrowser.Gecko || oBrowser.Opera) oItem = oItem.parentNode;
        if (oBrowser.IE4plus)                 oItem = oItem.parentElement;

        if (oItem)
        {
            if (oItem.id == iNavigate.menuId)
            {
                break; //current link must be a 'node' link - so don't open it
            }
            else if (oItem.id == iNavigate.menuBodyId)
            {
                oItem.style.display = oBrowser.DisplayShow;
                break;
            }
        }
    }

    while (oItem)
    {
        if (oBrowser.Gecko || oBrowser.Opera) oItem = oItem.parentNode;
        if (oBrowser.IE4plus)                 oItem = oItem.parentElement;

        if (oItem)
        {
            if (oItem.id == iNavigate.menuId)
            {
                SetMenuCookie(oItem, true);

                oItem.setAttribute(iNavigate.currentMenuAttr, '1');
            }
            else if (oItem.id == iNavigate.menuBodyId)
            {
                oItem.style.display = oBrowser.DisplayShow;
            }
        }
    }
}


function _SetItemPointer(oItem)
{
    //--------------------------------------------------
    // set pointer on current menu item
    //--------------------------------------------------
    if (oItem)
    {
        if (oBrowser.IE4plus) 
        {
            oImagePointer = GetFirstElement(oItem.parentElement.parentElement.parentElement, iNavigate.pointerId, 'img');
        }
        else if (oBrowser.Gecko || oBrowser.Opera)
        {
            oImagePointer = GetFirstElement(oItem.parentNode.parentNode.parentNode, iNavigate.pointerId, 'img');
        }
    
        if (oImagePointer) oImagePointer.src = oImagePointer.src.replace(iNavigate.PointerBlankName, iNavigate.PointerName);
    }
}


function _ClearItemPointer(oItem)
{
    //--------------------------------------------------
    // set pointer on current menu item
    //--------------------------------------------------
    if (oItem)
    {
        if (oBrowser.IE4plus) 
        {
            oImagePointer = GetFirstElement(oItem.parentElement.parentElement.parentElement, iNavigate.pointerId, 'img');
        }
        else if (oBrowser.Gecko || oBrowser.Opera)
        {
            oImagePointer = GetFirstElement(oItem.parentNode.parentNode.parentNode, iNavigate.pointerId, 'img');
        }
    
        if (oImagePointer) oImagePointer.src = oImagePointer.src.replace(iNavigate.PointerName, iNavigate.PointerBlankName);
    }
}


function _SetMenuBox(nMenu)
{
    if (xMenuBody[nMenu])
    {
        if (GetMenuCookie(xMenu[nMenu]) == true)
        {
            xMenuBox[nMenu].src   = xMenuBoxMinusImage[nMenu].src;
            xMenuBox[nMenu].title = iNavigate.NodeMinusTitle;
        }
        else
        {
            xMenuBox[nMenu].src   = xMenuBoxPlusImage[nMenu].src;
            xMenuBox[nMenu].title = iNavigate.NodePlusTitle;
        }
    }
}


function _ActivateMenu(nMenu)
{
    if (oBrowser.Opera) return;

    var oLink;
    var oSpan;
    var oMenuNode;

    oMenu     = xMenu[nMenu];
    oMenuBox  = xMenuBox[nMenu];
    oMenuBody = xMenuBody[nMenu];

    if (oMenuBody)
    {
        //--------------------------------------------------
        // store top level link
        //--------------------------------------------------
        oLink = GetFirstElement(oMenu, iNavigate.menuItemId);

        if (oLink)
        {
            oSpan = oLink;
    
            while (oSpan.tagName != 'SPAN')
            {
                if (oBrowser.Gecko  || oBrowser.Opera) oSpan = oSpan.parentNode;
                if (oBrowser.IE4plus)                  oSpan = oSpan.parentElement;
            }
    
            if (oSpan.id == iNavigate.menuNodeId) 
            {
                oMenu.setAttribute(iNavigate.menuNodePathAttr, NormalizePathName(oLink.pathname));
                oMenu.setAttribute(iNavigate.menuNodeQueryAttr, NormalizeQueryString(oLink.search));
            }
        }
    
        //--------------------------------------------------
        // bind event handlers
        //--------------------------------------------------
        oMenuNode = GetFirstElement(oMenu, iNavigate.menuNodeId)

        if (oBrowser.IE4plus)
        {
            oMenuBox.onclick  = iNavigate_MenuBoxClick;
            oMenuNode.onclick = iNavigate_MenuNodeClick;
            oMenuBody.onclick = iNavigate_CancelEventPropagation
            
        }            
        else if (oBrowser.Gecko)
        {
            oMenuBox.addEventListener('click',  iNavigate_MenuBoxClick, false);
            oMenuNode.addEventListener('click', iNavigate_MenuNodeClick, false);
            oMenuBody.addEventListener('click', iNavigate_CancelEventPropagation, false);
        }

        //--------------------------------------------------
        // set cursor
        //--------------------------------------------------
        if (oBrowser.IE4plus) 
        {
            oMenuBox.style.cursor = 'hand';
            oMenuNode.style.cursor = 'hand';
        }

        //--------------------------------------------------
        // set menu box graphics
        //--------------------------------------------------
        if (!oBrowser.Mozilla) _SetMenuBox(nMenu)
    }
}


function iNavigate_AfterLoad()
{
    if (!oBrowser.IE4plus && !oBrowser.Gecko) return;

    //--------------------------------------------------
    // Mozilla 0.9 work-around - set menu box graphics now 
    //--------------------------------------------------
    if (oBrowser.Mozilla)
    {
        for (i=0; i < xMenu.length; i++)
        {
            _SetMenuBox(i)
        }
    }

    var bConvert = (iNavigate.Frames || iNavigate.ConvertLink == false || (!iNavigate.PageSearch._bMatchLocation && iNavigate.ConvertParent == false)) ? false : true;

    //--------------------------------------------------
    // Set Path to current Page
    //--------------------------------------------------
    _SetPath(window, bConvert);

    if (bConvert)
    {
        //--------------------------------------------------
        // convert target item link to text and add emphasis
        //--------------------------------------------------
        if (iNavigate._oCurrentMenuItem )
        {
            if (oBrowser.IE4plus)
            {
                // we do this here for IE4 compatibility, in IE5+ we could do it earlier
    
                if (oBrowser.IE51beta)
                {
                    //IE 5.1 beta for Mac OS X work-around - do nothing!
                    return;
                }
                else if (oBrowser.Mac && oBrowser.Version == 5.0)
                {
                    //IE 5.0 for Mac Classic work-around on Node with Link

                    var oSpan = iNavigate._oCurrentMenuItem;
        
                    while (oSpan.tagName != 'SPAN')
                    {
                        oSpan = oSpan.parentElement;
                    }
    
                    if (oSpan.id == iNavigate.menuNodeId) return;
                }
                iNavigate._oCurrentMenuItem.outerHTML = '<em class=iNavigateCurrentPage>' + iNavigate._oCurrentMenuItem.innerHTML + '</em>';
            }
    
            else if (oBrowser.Gecko || oBrowser.Opera)
            {
                oElement = document.createElement('EM');
    
                oElement.setAttribute('class', 'iNavigateCurrentPage');
    
                var oNode = iNavigate._oCurrentMenuItem.firstChild;
    
                while (oNode)  
                {
                    oElement.appendChild(oNode.cloneNode(true));
    
                    oNode = oNode.nextSibling;
                }
        
                iNavigate._oCurrentMenuItem.parentNode.replaceChild(oElement, iNavigate._oCurrentMenuItem);
            }
        }
    }
}


function _SetPath(oWindow, bConvert)
{
    if (oBrowser.Opera) return;

    var oItem = iNavigate._oCurrentMenuItem;
    var oNode;
    var sPath;
    var bSkip = false;

    if (iNavigate.PathSeparator.length == 0)
    {
        iNavigate.PathSeparator = (iNavigate.RightToLeft) ? '&#160;&lt;&#160;' : '&#160;&gt;&#160;';
    }

    if (oItem)
    {
        if (oItem.id == iNavigate.menuItemId)
        {
            if (bConvert || iNavigate.PathAsText == true)
            {
                if (oBrowser.IE4plus) sPath = oItem.innerText;
                if (oBrowser.Gecko)   sPath = oItem.innerHTML;
            }
            else
            {
                if (oBrowser.IE4plus) sPath = oItem.outerHTML;
                if (oBrowser.Gecko)   sPath = oItem.parentNode.innerHTML;
            }
        }
    }

    if (oItem)
    {
        if (oBrowser.Gecko)   oItem = oItem.parentNode;
        if (oBrowser.IE4plus) oItem = oItem.parentElement;
    }

    while (oItem)
    {
        if (oItem.tagName == 'SPAN' && oItem.id == 'iNavigateMenuNode') bSkip = true;

        if (oItem.id == iNavigate.menuId)
        {
            oNode = GetFirstElement(oItem, iNavigate.menuNodeId);

            if (oNode)
            {
                if (bSkip)
                {
                    bSkip = false;
                }
                else
                {
                    if (iNavigate.RightToLeft)
                    {
                        if (iNavigate.PathAsText == true)
                        {    
                            if (oBrowser.IE4plus) sPath = sPath + iNavigate.PathSeparator + oNode.innerText;
                            if (oBrowser.Gecko)
                            {
                                if (oNode.firstChild.tagName == 'A')
                                {
                                    sPath = sPath + iNavigate.PathSeparator + oNode.firstChild.innerHTML;
                                }
                                else
                                {
                                    sPath = sPath + iNavigate.PathSeparator + oNode.innerHTML;
                                }
                            }
                        }
                        else
                        {    
                            sPath = sPath + iNavigate.PathSeparator + oNode.innerHTML;
                        }
                    }
                    else
                    {
                        if (iNavigate.PathAsText == true)
                        {   
                            if (oBrowser.IE4plus) sPath = oNode.innerText + iNavigate.PathSeparator + sPath;
                            if (oBrowser.Gecko)
                            {
                                if (oNode.firstChild.tagName == 'A')
                                {
                                    sPath = oNode.firstChild.innerHTML + iNavigate.PathSeparator + sPath;
                                }
                                else
                                {
                                    sPath = oNode.innerHTML + iNavigate.PathSeparator + sPath;
                                }
                            }
                        }
                        else
                        {   
                            sPath = oNode.innerHTML + iNavigate.PathSeparator + sPath;
                        }
                    }
                }
            }
        }

        if (oBrowser.Gecko)   oItem = oItem.parentNode;
        if (oBrowser.IE4plus) oItem = oItem.parentElement;
    }

    if (iNavigate.GroupName.length > 0)
    {
        if (iNavigate.RightToLeft)
        {
            sPath = sPath + iNavigate.PathSeparator + iNavigate.GroupTitle;
        }
        else
        {
            sPath = iNavigate.GroupTitle + iNavigate.PathSeparator + sPath;
        }
    }

    iNavigate.Path = sPath;

    var oPath = GetFirstElement(oWindow.document, iNavigate.pathId, 'span');

    if (oPath)
    {
        oPath.innerHTML = sPath;
    }
}


function iNavigate_OpenAll()
{
    if (oBrowser.Opera) return;

    if (oBrowser.Mozilla) 
    {
        var oAll = GetFirstElement(document, iNavigate.menuAll, 'span');

        oAll.style.display = oBrowser.DisplayHide;
    }

    for (i=0; i < xMenu.length; i++)
    {
        oMenu     = xMenu[i];
        oMenuBox  = xMenuBox[i];
        oMenuBody = xMenuBody[i];

        if (oMenuBody)
        {
            SetMenuCookie(oMenu, true);

            oMenuBody.style.display = oBrowser.DisplayShow;

            oMenuBox.src   = xMenuBoxMinusImage[i].src;
            oMenuBox.title = iNavigate.NodeMinusTitle;
        }
    }

    if (oBrowser.Mozilla)
    {
        oAll.style.display = oBrowser.DisplayShow;
    }
}


function iNavigate_CloseAll()
{
    if (oBrowser.Opera) return;

    if (oBrowser.Mozilla) 
    {
        var oAll = GetFirstElement(document, iNavigate.menuAll, 'span');

        oAll.style.display = oBrowser.DisplayHide;
    }

    for (i=0; i < xMenu.length; i++)
    {
        oMenu     = xMenu[i];
        oMenuBox  = xMenuBox[i];
        oMenuBody = xMenuBody[i];

        if (oMenuBody)
        {
            SetMenuCookie(oMenu, false);

            oMenuBody.style.display = oBrowser.DisplayHide;

            oMenuBox.src   = xMenuBoxPlusImage[i].src;
            oMenuBox.title = iNavigate.NodePlusTitle;
        }
    }

    if (oBrowser.Mozilla)
    {
        oAll.style.display = oBrowser.DisplayShow;
    }
}


function iNavigate_Locate()
{
    if (oBrowser.Opera) return;

    if (oBrowser.Mozilla) 
    {
        var oAll = GetFirstElement(document, iNavigate.menuAll, 'span');

        oAll.style.display = oBrowser.DisplayHide;
    }

    for (i=0; i < xMenu.length; i++)
    {
        oMenu     = xMenu[i];
        oMenuBox  = xMenuBox[i];
        oMenuBody = xMenuBody[i];

        if (oMenuBody)
        {
            if (oMenu.getAttribute(iNavigate.currentMenuAttr) == '1')
            {
                SetMenuCookie(oMenu, true);
    
                oMenuBody.style.display = oBrowser.DisplayShow;
    
                oMenuBox.src   = xMenuBoxMinusImage[i].src;
                oMenuBox.title = iNavigate.NodeMinusTitle;
            }
        }
    }

    if (oBrowser.Mozilla)
    {
        oAll.style.display = oBrowser.DisplayShow;
    }
}


function iNavigate_MoveNext()
{
    var nItem = iNavigate._nCurrentMenuNo;

    nItem++;

    if (nItem >= xHref.length) nItem = 0;

    if (iNavigate.Frames)
    {
        iNavigate._FrameWindow.document.location = xHref[nItem];
    }
    else
    {
        document.location = xHref[nItem];
    }
}


function iNavigate_MovePrevious()
{
    var nItem = iNavigate._nCurrentMenuNo;

    nItem--;

    if (nItem < 0) nItem = xHref.length - 1;

    if (iNavigate.Frames)
    {
        iNavigate._FrameWindow.document.location = xHref[nItem];
    }
    else
    {
        document.location = xHref[nItem];
    }    
}


/**********************************************************************
 *
 * Page Search Class
 *
 **********************************************************************/

function PageSearch()
{
    this._bMatchLocation  = false;
    this.page             = arguments[0];
    this.querystring      = arguments[1];
}

PageSearch.prototype.MatchesLink = PageSearch_MatchesLink;
PageSearch.prototype.MatchesURL  = PageSearch_MatchesURL;
PageSearch.prototype.Initialize  = PageSearch_Initialize;


function PageSearch_Initialize(oWindow)
{
    if (!this.page)
    {
        this._bMatchLocation = true;

        this.page = NormalizePathName(oWindow.location.pathname, iNavigate.HomePage);        

        if (iNavigate.MatchQueryString == true)
        {
            this.querystring = NormalizeQueryString(oWindow.location.search);
        }
    }
}


function PageSearch_MatchesLink(oLink)
{
    if (!oLink.pathname) return false;

    var sPathName = NormalizePathName(oLink.pathname);

    if (this._bMatchLocation)
    {
        if (this.page != sPathName) return false;

        if (this.querystring)
        {
            if (oBrowser.Opera)
            {
                if (this.querystring != NormalizeQueryString(oLink.pathname)) return false;
            }
            else
            {
                if (this.querystring != NormalizeQueryString(oLink.search)) return false;
            }
        }
    }
    else
    {
        if (typeof this.page == 'string')
        {
            if (StringEnds(sPathName, this.page.toLowerCase()) == false) return false;
        }
        else
        {
            if (!this.page.test(sPathName)) return false;
        }
    
        if (this.querystring)
        {
            if (oBrowser.Opera)
            {
                var sQueryString = NormalizeQueryString(oLink.pathname);
            }
            else
            {
                var sQueryString = NormalizeQueryString(oLink.search);
            }
    
            if (typeof this.querystring == 'string')
            {
                if (this.querystring.toLowerCase() != sQueryString) return false;
            }
            else
            {
                if (!this.querystring.test(sQueryString)) return false
            }
        }
    }
    return true;
}


function PageSearch_MatchesURL(sPathName, sQueryString)
{
    if (!this.page) return false;

    if (typeof this.page == 'string')
    {
        if (this.page.toLowerCase() != sPathName) return false;
    }
    else
    {
        if (!this.page.test(sPathName)) return false;
    }

    if (this.querystring)
    {
        if (typeof this.querystring == 'string')
        {
            if (this.querystring.toLowerCase() != sQueryString) return false;
        }
        else
        {
            if (!this.querystring.test(sQueryString)) return false
        }
    }

    return true;
}


/**********************************************************************
 *
 * Event Handlers
 *
 **********************************************************************/ 

function iNavigate_MenuBoxClick(evt)
{
    var oSource;

    if (oBrowser.IE4plus) oSource = window.event.srcElement;
    if (oBrowser.Gecko)   oSource = evt.currentTarget;

    nMenu = oSource.getAttribute(iNavigate.menuNoAttr);

    _MenuToggle(nMenu);
}

function iNavigate_MenuNodeClick(evt)
{
    var oSource;
    var sNodePath;
    var sNodeQuery;

    if (oBrowser.IE4plus) oSource = window.event.srcElement;
    if (oBrowser.Gecko)   oSource = evt.currentTarget;

    while (oSource.id != iNavigate.menuId)
    {
        if (oBrowser.Gecko)   oSource = oSource.parentNode;
        if (oBrowser.IE4plus) oSource = oSource.parentElement;
    }

    if (oSource)
    {
        sNodePath = oSource.getAttribute(iNavigate.menuNodePathAttr);
        sNodeQuery = oSource.getAttribute(iNavigate.menuNodeQueryAttr);

        if (sNodePath)
        {
            if (iNavigate.PageSearch.MatchesURL(sNodePath, sNodeQuery) == false)
            {
                return;
            }
        }

        nMenu = oSource.getAttribute(iNavigate.menuNoAttr);

        _MenuToggle(nMenu);
    }
}

function _MenuToggle(nMenu)
{
    var i;
    var oMenu     = xMenu[nMenu];
    var oMenuBox  = xMenuBox[nMenu];
    var oMenuBody = xMenuBody[nMenu];

    if (oMenuBody)
    {
        if (oBrowser.Mozilla) 
        {
            var oAll = GetFirstElement(document, iNavigate.menuAll, 'span');
    
            oAll.style.display = oBrowser.DisplayHide;
        }
    
        if (oMenuBody.style.display == oBrowser.DisplayHide)
        {
            SetMenuCookie(oMenu, true);

            oMenuBody.style.display = oBrowser.DisplayShow;

            oMenuBox.src   = xMenuBoxMinusImage[nMenu].src;
            oMenuBox.title = iNavigate.NodeMinusTitle;

            if (iNavigate.AutoClose == true)
            {
                for (i=0; i < xMenu.length; i++)
                {
                    if (xMenuBody[i])
                    {
                        xMenuBody[i].setAttribute(iNavigate.openMenuAttr, '0');
                    }
                }
                
                var oItem = oMenuBody
                
                while (oItem)
                {
                    if (oItem)
                    {
                        if (oItem.id == iNavigate.menuBodyId)
                        {
                            oItem.setAttribute(iNavigate.openMenuAttr, '1');
                        }
                
                        if (oBrowser.Gecko)   oItem = oItem.parentNode;
                        if (oBrowser.IE4plus) oItem = oItem.parentElement;
                    }
                }
                
                for (i=0; i < xMenu.length; i++)
                {
                    if (xMenuBody[i])
                    {
                        if (!((xMenuBody[i].getAttribute(iNavigate.openMenuAttr) == '1') || 
                           ((iNavigate.AutoCloseCurrent == false) && (xMenu[i].getAttribute(iNavigate.currentMenuAttr) == '1'))))
                        {
                            xMenuBody[i].style.display = oBrowser.DisplayHide;

                            xMenuBox[i].src   = xMenuBoxPlusImage[nMenu].src;
                            xMenuBox[i].title = iNavigate.NodePlusTitle;

                        }
                    }
                }
            }
        }
        else
        {
            SetMenuCookie(oMenu, false);

            oMenuBody.style.display = oBrowser.DisplayHide;
    
            oMenuBox.src   = xMenuBoxPlusImage[nMenu].src;
            oMenuBox.title = iNavigate.NodePlusTitle;
        }

        if (oBrowser.Mozilla) 
        {
            oAll.style.display = oBrowser.DisplayShow;
        }
    }
}

function iNavigate_CancelEventPropagation(evt)
{
    if (oBrowser.IE4plus)
    {
        window.event.cancelBubble=true;
    }

    else if (oBrowser.Gecko)
    {
        evt.cancelBubble = true;
    }
}


/**********************************************************************
 *
 * Menu Cookie Functions
 *
 **********************************************************************/ 

function SetMenuCookie(oMenu, bValue)
{
    var sValue = bValue ? '1' : '0';

    if (iNavigate.PreserveState)
    {
        document.cookie = iNavigate.cookiePrefix + iNavigate.GroupName + '_' + oMenu.getAttribute(iNavigate.menuNoAttr) + '=' + sValue + '; path=/';
    }

    oMenu.setAttribute('menuOpen', sValue);
}


function GetMenuCookie(oMenu)
{
    var bValue = false;

    bValue = document.cookie.indexOf(iNavigate.cookiePrefix + iNavigate.GroupName + '_' + oMenu.getAttribute(iNavigate.menuNoAttr) + '=1') != -1;

    if (!bValue) 
    {
        if (oMenu.getAttribute('menuOpen') == '1') bValue = true;
    }
    return bValue;
}


function SetGroupLoaded()
{
    document.cookie = iNavigate.cookiePrefix + iNavigate.GroupName + '=1; path=/';
}


function GetGroupLoaded()
{
    var bValue = false;

    bValue = document.cookie.indexOf(iNavigate.cookiePrefix + iNavigate.GroupName + '=1') == -1;

    return bValue;
}


/**********************************************************************
 *
 * URL Utilities
 *
 **********************************************************************/ 

function NormalizePathName(sPathName, sDefault)
{
    var sBuffer;
    var nPos;

    //--------------------------------------------------
    // ensure pathname has leading slash
    //--------------------------------------------------
    nPos = sPathName.indexOf('/');

    if (nPos == 0) 
    {
        sBuffer = sPathName;
    }
    else
    {
        sBuffer = '/' + sPathName;
    }

    //--------------------------------------------------
    // Opera will include the search string in the pathName
    //--------------------------------------------------
    if (oBrowser.Opera)
    {
        nPos = sPathName.lastIndexOf('?');

        if (nPos > -1)
        {
            sBuffer = sBuffer.substring(0, nPos);
        }
    }

    //--------------------------------------------------
    // set default if appropriate
    //--------------------------------------------------
    if (sBuffer.length == 1)
    {
        if (sDefault)
        {
            sBuffer = sBuffer + sDefault;
        }
    }

    //--------------------------------------------------
    // replace all back-slash with forward-slash, set lowercase and unescape URL encoding
    //--------------------------------------------------

    return unescape(sBuffer.replace(/\\/g, '/').toLowerCase());
}


function NormalizeQueryString(sQueryString)
{
    //--------------------------------------------------
    // remove leading ?
    //--------------------------------------------------
    var sBuffer = sQueryString;

    if (sBuffer.length > 0)
    {
        var nPos = sBuffer.indexOf('?');

        if (nPos > -1) 
        {
            sBuffer = sBuffer.substr(nPos + 1);
        }
    }

    //--------------------------------------------------
    // set lowercase
    //--------------------------------------------------
    return sBuffer.toLowerCase()
}


/**********************************************************************
 *
 * Cross Browser Utilities
 *
 **********************************************************************/ 

function GetElements(element, id, tagName)
{
    var i;
    var elements = new Array();

    if (oBrowser.IE4plus) 
    {
        if (element.all[id])
        {
            elements = element.all[id];

            if (!elements.length) elements = [element.all[id]];
        }
    }
    else if (oBrowser.Opera)
    {
        var temp = new Array();

        temp = element.getElementsByTagName(tagName);

        for (i=0; i < temp.length; i++)
        {
            if (temp[i].id == id)
            {
                elements.push(temp[i]);
            }
        }
    }
    else if (oBrowser.Gecko)
    {
        _GetElementsDOM2(elements, element, id);
    }
    return elements;
}


function _GetElementsDOM2(elements, element, id)
{
    var i;

    if (element.childNodes)
    {
        for (i=0; i < element.childNodes.length; i++)
        {
            if (element.childNodes[i].id == id)
            {
                elements.push(element.childNodes[i]);
            }
    
            _GetElementsDOM2(elements, element.childNodes[i], id);
        }
    }
}


function GetFirstElement(element, id, tagName)
{
    var i;
    var reply;
    var elements;

    if (oBrowser.IE4plus)
    {
        if (element.all[id])
        {
            elements = element.all[id];

            if (!elements.length) 
            {
                reply = elements;
            }
            else
            {
                reply = elements[0];
            }
        }
    }
    else if (oBrowser.Opera)
    {
      //getElementById only supported on document :-(

        elements = element.getElementsByTagName(tagName);

        for (i=0; i < elements.length; i++)
        {
            if (elements[i].id == id)
            {
                reply = elements[i];
                break;
            }
        }
    }
    else if (oBrowser.Gecko)
    {
        elements = new Array()

        _GetFirstElementDOM2(elements, element, id);

        reply = elements[0];
    }

    return reply;
}


function _GetFirstElementDOM2(elements, element, id)
{
    var i;

    if (element.childNodes)
    {
        for (i=0; i < element.childNodes.length; i++)
        {
            if (element.childNodes[i].id == id)
            {
                elements.push(element.childNodes[i]);
    
                break;
            }
    
            _GetElementsDOM2(elements, element.childNodes[i], id);
    
            if (elements.length > 0) break;
        }
    }
}



/**********************************************************************
 *
 * String Utilities
 *
 **********************************************************************/ 

function StringEnds(sString, sEnd)
{
    return (sString.lastIndexOf(sEnd) == sString.length - sEnd.length)

}


