$(function(){
	$(window).bind("load", function() {
    $('.ctg_img img').rotate('0deg'); // 傾きの設定
    $('.ctg').mouseover(
        function () {
   	     $('.ctg_img img:not(:animated)').animate({rotate: '-4deg'}, 250); // マウスオーバー時のアニメーションの設定
		 $('.ctg').addClass('ct-hover');
        }
    );
    $('.ctg').mouseout(
        function () {
   	     $('.ctg_img img').animate({rotate: '0deg'}, 250); // マウスアウト時のアニメーションの設定
		 $('.ctg').removeClass('ct-hover');
        }
    );
});
});
