$(document).ready(
  function(){
    $("#cnt_left a img,#footer_wrapper a img,.op,.opg a img").hover(function(){
       $(this).fadeTo(0.001, 0.6); // マウスオーバーで透明度を60%にする
    },function(){
       $(this).fadeTo(0.001, 1.0); // マウスアウトで透明度を100%に戻す
    });
  });
