function logoScroller(){
      nowLeft = window.pageXOffset; 
      if(nowLeft == undefined){
          nowLeft = document.body.scrollLeft;
      }
      document.getElementById('logo').style.left = nowLeft + 366;
}

function createJumper(id, posx, isrc, link){
    // div erstellen
    div = document.createElement("div");
    div.setAttribute("style", "position:absolute; left:"+posx+"px; top:0px; width:24px; height:22px;");
    div.setAttribute("id", "j"+id);
    document.getElementById("jumper").appendChild(div);
    // link erstellen
    ref = document.createElement("a");
    ref.setAttribute("id", "a"+id);
    ref.setAttribute("href", "javascript:jump('"+link+"')");
    document.getElementById("j"+id).appendChild(ref);
    //img erstellen
    img = document.createElement("img");
    img.setAttribute("src", isrc);
    img.setAttribute("border", 0);
    document.getElementById("a"+id).appendChild(img);
    document.getElementById("j"+id).style.position = "absolute";
    document.getElementById("j"+id).style.left     = posx+"px";
}
function jump(posx){
    window.scrollTo(posx, '0');
}    
