$(document).ready(function () {
//アニメーションスピード
var scrollSpeed = 3;
//画像サイズ
var imgWidth = 4400;
//画像の初期位置
var posX = 0;
//ループ処理
setInterval(function(){
//画像のサイズまで移動したら0に戻る。
if (posX >= imgWidth) posX= 0;
//scrollSpeed分移動
posX -= scrollSpeed;
$('.headMallsTop').css("background-position",posX+"px 0px");
}, 30);
});
