//The effect of moving the mouse up
$(".jq_btn").hover(function(){
$(this).find( "div").stop().fadeIn();
},function(){
$(this).find("div").stop().fadeOut();
}) ;
The principle is very simple
a label background setting normal state
div background setting mouse hover background
Just add
class="jq_btn"
All have effects automatically