I searched a background animation samples in web. i found this url :
http://jsfiddle.net/rwaldron/TzWQA/
and it works safari and chrome, but the animation background is not working with opera,and Firefox. is there any workaround to make this work across the browsers?
the code it contains is :
$(document).ready(function(){
$("#puppies")
.animate({
backgroundPositionY: "0px",
backgroundPositionX: "-250px"
}, 2000);
});