<!--
var sdown=0;
var scroll=0;


function setheight(){
   hscroll=document.getElementById("scrollcontent").offsetHeight - document.getElementById("our-shop").offsetHeight;
   if(hscroll>0){
      hscroll+=0;//für den IE
      document.getElementById("scrollbar").style.visibility="visible";
      document.getElementById("scrollbar").style.width="6px";
      document.getElementById("scrollupimg").style.width="5px";
      document.getElementById("scrolldownimg").style.width="5px";
      document.getElementById("scrollcontent").style.marginRight="7px";
   }
   else {
      hscroll=0;
   }
}

function scrollup(){
   sdown=sdown+1;
   if(sdown>0)sdown=0;
   document.getElementById("scrollcontent").style.marginTop = sdown+"px";
   scroll=window.setTimeout("scrollup()",1);
}

function scrolldown(){
   sdown=sdown-1;
   if(sdown<-hscroll)sdown=-hscroll;
   document.getElementById("scrollcontent").style.marginTop = sdown+"px";
   scroll=window.setTimeout("scrolldown()",1);
}

function stopscroll(){
   clearTimeout(scroll);
}

-->
