$(document).ready(function (){
$("a.alpha img,input[type=image]").hover(function ()
{
$(this).stop();
$(this).fadeTo(100, 0.6);
// マウスオーバーで透明度を60%にする
},
function ()
{
$(this).stop();
$(this).fadeTo(100, 1.0);
// マウスアウトで透明度を100%に戻す
});
});
