$(document).ready(function(){
$("img.jquery-hover").fadeTo(0,0.2);/*触る前のアクション（速度？,濃度1.0〜0.0まで）*/
$("img.jquery-hover").hover(function(){
        $(this).fadeTo(500,1.0);/*触った時のアクション（速度,濃度1.0〜0.0まで）*/
    },
    function(){
        $(this).fadeTo(500,0.2);/*触った後のアクション（速度,濃度1.0〜0.0まで）*/
    });
});

