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