$(function(){    // 左のナビゲーション    var nav_count = 0;    $("#booknavileft img").each(function(){        $(this).css({ "position":"absolute", "left":"0px", "top":nav_count*37+"px" });        nav_count++;    });    // 最初にアニメーションしながら引っ込むようにする    $("#booknavileft img").animate({ "left":"-200px" }, 1500);    // マウスイベントを設定する    $("#booknavileft img").hover(        function(){            $(this).animate({ "left":"0px" }, 500);        },        function(){            $(this).animate({ "left":"-200px" }, 500);        }    );});
