Есть такой код:
$('.delete_botton').mouseover(function()
{
$(this).parent('.del').children('.MyTitle').show();
}).mouseout(function() { $(this).parent('.del').children('.MyTitle').hide(); })
$('.recovery_botton').mouseover(function()
{
$(this).parent('.del').children('.MyTitle').show();
}).mouseout(function() { $(this).parent('.del').children('.MyTitle').hide(); })
Это две одинаковые функции с разными ID. Как это можно совместить?