// bildbreite 1067px , Startposition: -477, min:-955 , max:0
var pos = -437;
var time = 40;
var step = 4;

function scrollLinks() {
	pos = pos - step;
	if (pos < -955) { pos= -955 }
	document.getElementById('scroller-bild').style.left = pos+'px';
	aktiv = window.setTimeout("scrollLinks()", time);
}

function scrollRechts() {
	pos = pos + step;
	if (pos > 0) { pos= 0 }
	document.getElementById('scroller-bild').style.left = pos+'px';
	aktiv = window.setTimeout("scrollRechts()", time);
}


function cleartimer() {
	window.clearTimeout(aktiv);
}


