/*Scroll-Script fuer die Anzeige der kleinen Produktbilder */scrollStep=1timerLeft=""timerRight=""function toLeft(id){  document.getElementById(id).scrollLeft=0}function scrollDivLeft(id){  clearTimeout(timerRight)   document.getElementById(id).scrollLeft+=scrollStep  /* scrollStep*=1.005 */                                   //beschleunigtes Scrollen  timerRight=setTimeout("scrollDivLeft('"+id+"')",10)}function scrollDivRight(id){  clearTimeout(timerLeft)  document.getElementById(id).scrollLeft-=scrollStep  /* scrollStep*=1.005 */                                  //beschleunigtes Scrollen  timerLeft=setTimeout("scrollDivRight('"+id+"')",10)}function toRight(id){  document.getElementById(id).scrollLeft=document.getElementById(id).scrollWidth}function stopMe(){  clearTimeout(timerRight)   clearTimeout(timerLeft)  /* scrollStep=1 */                    //nach Beschleunigung Geschwindigkeit wieder auf "normal" setzen.}
