startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("suckerfish");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" overx";
}
node.onmouseout=function() {
this.className=this.className.replace(" overx", "");
}
}
}
}
}
window.onload=startList;


//htp.js


$(document).ready(function(){
   $(".sub").hover(function(){

    $(this).prev().css({backgroundPosition:'0 -21px'});
    },
    function(){
   $(this).prev().css({backgroundPosition:'0 0'});
 });
 
 $("#suckerfish li").not('#aktiv').hover(function(){

    $(this).css({backgroundPosition:'0 -21px'});
    },
    function(){
   $(this).css({backgroundPosition:'0 0'});
 });


$(".treeview").Treeview({collapsed: true});
 
 
 });
 
 
 
