jQuery(".product_box").hover(
function () {
jQuery(".button").fadeIn("fast").show();
},
function () {
jQuery(".button").fadeOut("fast").hide();
}
);
<script>
jQuery(".product_box").hover(
function () {
jQuery(".button",this).fadeTo("fast",1);
},
function () {
jQuery(".button",this).fadeOut(500);
}
);
</script>