$(document).ready(function() {

var pos = 0;

setInterval(function(){
//alert('x');
pos -= 1000;
//alert(pos);
if(pos < -2000) pos = 0;
$("#handBox").animate({"background-position": pos + 'px'}, {duration: 1000}, "swing");
}, 6000);

});

