View file PF.Base/module/egift/static/jscript/admincp.js
$Behavior.egiftHoverAction = function() {
$('.gift_cell').each(function(){
$(this).mouseover(function(){
$('#gift_manage_' + $(this).attr('id').replace('gift_cell_','')).show();
}).mouseout(function(){
$('#gift_manage_' + $(this).attr('id').replace('gift_cell_','')).hide();
});
});
};