/*--------------ロールオーバー用--------------------*/
$(document).ready(function(){
$("img.img-hover").fadeTo(0,1.0);
$("img.img-hover").hover(function(){
        $(this).fadeTo(500,0.6);
    },
    function(){
        $(this).fadeTo(500,1.0);
    });
});

$(document).ready(function(){
$("img.img-hover2").fadeTo(0,1.0);
$("img.img-hover2").hover(function(){
        $(this).fadeTo("fast",0.8);
    },
    function(){
        $(this).fadeTo("fast",1.0);
    });
});

