実際のボタンテキストがフェードすることなく、ボタンの背景画像をmouseover
フェードイン(およびフェードアウト)しようとしています。mouseout
$('btn').hover(function () {
$('btn', this).stop().animate({
"opacity": 1
});
}, function () {
$('btn', this).stop().animate({
"opacity": 0
});
});