var pos=0, speed=10; 

function scrollIt() {
			document.getElementById('wirbewegen').style.backgroundPosition=pos+'px 0px';
			pos--;  // specifies left / right or top / bottom.
			setTimeout('scrollIt()',speed);
 			};

 setTimeout('scrollIt()',2500);