    <!--//--><![CDATA[//>
    <!--
    
    browser();
    
    function browser() {
    var strBrowser = navigator.appVersion;
    
      //alert("browser 1");
      if (strBrowser.indexOf("MSIE") > -1) {
        sfHover = function() {
          var sfEls = document.getElementById("menu").getElementsByTagName("li");
          
          for (var i=0; i<sfEls.length; i++) {
            sfEls[i].onmouseover=function() {
              this.className+=" sfhover";
            }
            sfEls[i].onmouseout=function() {
              this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
            }
          }
        }
        if (window.attachEvent) {
          window.attachEvent("onload", sfHover);
          //alert("browser 2 neu");
        }
        //alert("browser 3");
      }
    }
    //-->
    
    function navi() {
		  var strMenu = document.getElementById("menuID").value;
		  var strActive = document.getElementById("activeID").value;
      //var myLI = document.getElementById(strMenu).getElementsByTagName("li");
      //var myAnchor = document.getElementById(strMenu).getElementsByTagName("a");
      var strID = "";
      
      if (strMenu != "") {
        var myLI = document.getElementById(strMenu).getElementsByTagName("li");
        var myAnchor = document.getElementById(strMenu).getElementsByTagName("a");
        
        myAnchor[0].style.backgroundColor = "#609B35";
        myAnchor[0].style.color = "#FFF";
        //myAnchor[0].className = "activemenu";
        
        for (var i=0; i<myLI.length; i++) {
          strID = myLI[i].id;
          if (strID == strActive) {
            myAnchor = document.getElementById(strID).getElementsByTagName("a");
            myAnchor[0].style.backgroundColor = "#609B35";
            myAnchor[0].style.color = "#FFF";
            //myAnchor[0].className = "activemenu";
          }
        }
      }
		  
		  //alert(navigator.appVersion);
		  naviShowLoad();
    }
    
    
    function naviShowLoad() {
      var strSub = document.getElementById("subID").value;
        if (strSub != "") {
          document.getElementById(strSub).style.left ="auto";
        }
    }
    
    
    function naviShow(strCheck) {
      var strSub = document.getElementById("subID").value;
      
        if ((strCheck != strSub) && (strSub != "")) {
          //alert(strCheck + " - " + strSub);
          //document.getElementById(strSub).style.left ="auto";
          //document.getElementById(strSub).style.visibility = "visible";
          document.getElementById(strSub).style.display = "inline";
        }
    }
    
    
    function naviHide(strCheck) {
      //alert(strCheck);
      var strSub = document.getElementById("subID").value;
      //var myMenu = document.getElementById(strCheck);
      
        //alert(strCheck + " - " + strSub);
        if ((strCheck != strSub) && (strSub != "")) {
          //alert(strCheck + " - " + strSub);
          //document.getElementById(strSub).style.left ="-999em";
          //document.getElementById(strSub).style.visibility = "hidden";
          document.getElementById(strSub).style.display = "none";
        }
    }