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

