$.(".box").hover(function(){
var id= $(this).attr('id');
$.("#button_"+ id).fadeIn(500);
},function () {
$("#button_"+ id).fadeOut(500);
});
Sonra
üstteki jquery i footer a ekle ayrıca yine css den ozetgec i display:none yapmalısın.
$.(".box").hover(function(){
var id= $(this).attr('id');
$.("#button_"+ id).fadeIn(500);
},function () {
$("#button_"+ id).fadeOut(500);
});