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

