$(document).ready(function(){ 
    $(".latest_img").fadeTo("slow", 0.6);//ページ読み込み時の設定

    $(".latest_img").hover(function(){ 
    $(this).fadeTo("slow", 1.0);//マウスオンした時の設定

    },function(){ 
    $(this).fadeTo("slow", 0.6);//マウスアウトしたときの設定

    }); 
}); 

$(document).ready(function(){ 
    $(".text").fadeTo("slow", 0.6);//ページ読み込み時の設定

    $(".text").hover(function(){ 
    $(this).fadeTo("slow", 1.0);//マウスオンした時の設定

    },function(){ 
    $(this).fadeTo("slow", 0.6);//マウスアウトしたときの設定

    }); 
}); 