//画像のフェード効果
$(document).ready(function(){
$(".hover img").fadeTo(0,1.0);
$(".hover img").hover(function(){
        $(this).fadeTo(300,0.8);
    },
    function(){
        $(this).fadeTo(300,1.0);
    });
});
