    var lhsNav_help = {
      more: function(moreRef){
        var hiddenStuff = document.getElementById("lhsNavShowMore");
        hiddenStuff.style.display="block"
        moreRef.style.display = "none";
      },
      show: function(Obj,incomingText) {
        helpDivObj = document.createElement('DIV');
        helpDivObj.id = 'imagewindow';
        helpDivObj.style.width = '200px';
        helpDivObj.style.textAlign = 'left';
        helpDivObj.style.position = 'absolute';
        helpDivObj.style.left = (YAHOO.util.Dom.getX(Obj) - 10) + 'px';
        helpDivObj.style.top = (YAHOO.util.Dom.getY(Obj) - 10) + 'px';
        helpDivObj.style.padding = '10px';
        helpDivObj.style.zIndex = "1000000";
        helpDivObj.style.background = '#FFFFFF';
        helpDivObj.style.border = '3px solid #D06D08';
        var firstPart='<div><img src="/images/icon_questionmark.gif" alt="" /></div><div style="padding:10px;">';
        var lastPart = '</div>';
        helpDivObj.innerHTML = firstPart;
        for(i=0;i<incomingText.length;i++)
        {
          if(i<incomingText.length-1)
            helpDivObj.innerHTML += incomingText[i] + "<hr class='singlePix' noShade />";
          else
            helpDivObj.innerHTML += incomingText[i];
        }
        helpDivObj.innerHTML += lastPart;
        document.body.appendChild(helpDivObj);
        YAHOO.util.Event.addListener(helpDivObj, 'mouseout', lhsNav_help.hide);
      },
      hide: function(e) {
        relTargetObj = YAHOO.util.Event.getRelatedTarget(e);
        targetObj = YAHOO.util.Event.getTarget(e);
        region1 = YAHOO.util.Dom.getRegion(helpDivObj);
        region2 = YAHOO.util.Dom.getRegion(relTargetObj);
        contains = region1.contains(region2)
        if (contains) {
          return;
        } else {
          YAHOO.util.Event.removeListener(helpDivObj, 'mouseout', lhsNav_help.hide);
          document.body.removeChild(helpDivObj);
        }
      },

      determineNode:function(){
      var locStr =  (YAHOO.util.Cookie.get("hc2.cfurl")!=null)?YAHOO.util.Cookie.get("hc2.cfurl"):location.href;
      locStr = locStr.substring(locStr.lastIndexOf("_")+1,locStr.length);
      if(locStr.indexOf("?")!=-1)locStr=locStr.substring(0,locStr.indexOf("?"));
      if(locStr.indexOf("indepth")!=-1)
        locStr = locStr.substring(8,locStr.length);     
      locStr = locStr.replace(/\/sw\/cfa-/,"");/*bz5541*/
      locStr = locStr.replace(/-/gi,"");
      locStr = locStr.replace(/#[A-Za-z0-9]*/,"");
      locStr = locStr.replace(/multimedia/,"");/*bz5438*/
      var lhsNav = document.getElementById("lhsNav");
      lhsNav_help.updateSelected(lhsNav,locStr);
     },

      updateSelected:function(ref,searchStr) {
        var children = ref.childNodes;
        for(var i = 0; i < children.length; i++) {
            var child = children[i];
            if (child.nodeType == 3 /*Node.TEXT_NODE*/)
            {
              var lowerCaseText = child.data.toLowerCase();
              var lowerCaseText = lowerCaseText.replace(/ /gi,"");
              var lowerCaseText = lowerCaseText.replace(/'/gi,"");
              var lowerCaseText = lowerCaseText.replace(/:/gi,"");
              if(lowerCaseText.indexOf(searchStr)!=-1){
                if (searchStr == 'tools' && lowerCaseText != searchStr) {
                   continue;
                }
                if (searchStr == 'videos' && lowerCaseText != searchStr) {
                   continue;
                }

                child.parentNode.className="lhsNavSelected";
              }
            }
            else
              lhsNav_help.updateSelected(child, searchStr);
        }
    }
  }
/*rhsAccordian*/
function toggleNewMedia(clickedObj,openObjId){
    var videoMedia = document.getElementById("videoMedia");
    var imageMedia = document.getElementById("imageMedia");
    var slideshowMedia = document.getElementById("slideshowMedia");
    if(openObjId != "videoMedia" && videoMedia != undefined){videoMedia.style.display = "none";}
    if(openObjId != "imageMedia" && imageMedia != undefined){imageMedia.style.display = "none";}
    if(openObjId != "slideshowMedia" && slideshowMedia != undefined){slideshowMedia.style.display = "none";}
    document.getElementById(openObjId).style.display = "block";
    var children = YAHOO.util.Dom.getElementsByClassName("selectedTab","li");
    for(var child in children){
      children[child].className="";
    }
    clickedObj.parentNode.className="selectedTab";
  }
