$(document).ready(
  function(){
    $("a img").parent("a").hover(function(){
       $(this).not(':animated').fadeTo("normal", 0.6); // マウスオーバーで透明度を60%にする
    },function(){
       $(this).fadeTo("slow", 1.0); // マウスアウトで透明度を100%に戻す
    });
	
    $(".smallBtn,.mediumBtn").hover(function(){
       $(this).not(':animated').fadeTo("normal", 0.6); // マウスオーバーで透明度を60%にする
    },function(){
       $(this).fadeTo("slow", 1.0); // マウスアウトで透明度を100%に戻す
    });
});

