var p=0;
var speed=50;

window.onload=function() {
   fotobalk();
}

function fotobalk() {
	document.getElementById('fotobar').style.backgroundPosition=p+'px 0';
	p--;
	setTimeout('fotobalk()',speed);
}