function hoverEffektOver(obj)
          {
            vorherPrev = obj.previousSibling.style.backgroundColor;
            obj.previousSibling.style.backgroundColor='#333';
            
            vorherNext = obj.nextSibling.style.backgroundColor;
            obj.nextSibling.style.backgroundColor='#333';
          }

          function hoverEffektOut(obj)
          {
            obj.previousSibling.style.backgroundColor=vorherPrev;
            obj.nextSibling.style.backgroundColor=vorherNext;
          }
