      function fixLowerNavItemMouseOver() {
        if(this.className != 'printBtn') {
			this.className=this.className+" inHoverState"; 
		}

        if (this.nextSibling!=null && this.nextSibling.className != 'printBtn') {
          this.nextSibling.className+=" previousSiblingInHoverState";
          if (ie6Mode) {
            this.nextSibling.style.background="#918C88";
          }
        }
      }
      function fixLowerNavItemMouseOut() {
        this.className=this.className.replace("inHoverState", "");
        if (this.nextSibling!=null && this.nextSibling.className != 'printBtn') {
          this.nextSibling.className=this.nextSibling.className.replace("previousSiblingInHoverState", "");
          if (ie6Mode) {
            if (this.id=="current") {
              this.nextSibling.style.background="#918C88 none scroll no-repeat left center";
            } else {
              this.nextSibling.style.background="#918C88 url(/images/navItemSeparator.jpg) scroll no-repeat left center";
            }
          }
        }
      }
      function fixLowerNavItemSeparator(list) {
        try {
          var parent=document.getElementById(list); 
          for (var i=0; parent.childNodes[i]; i++) {
            var theChild=parent.childNodes[i];
            theChild.onmouseover=fixLowerNavItemMouseOver;
            theChild.onmouseout=fixLowerNavItemMouseOut;
          }
        } catch (e) {}
      }
      function fixLowerNavItemSeparatorOnUpdate(list) {
        try {
          if (ie6Mode) {
            var parent=document.getElementById(list); 
            for (var i=0; parent.childNodes[i]; i++) {
              var theChild=parent.childNodes[i];
              if (theChild.id=="current" && theChild.nextSibling!=null && this.nextSibling.className != 'printBtn') {
                theChild.nextSibling.style.background="#918C88 none scroll no-repeat left center";
              } else {
                theChild.nextSibling.style.background="#918C88 url(/images/navItemSeparator.jpg) scroll no-repeat left center";
              }
            }
          }
        } catch (e) {}
      }