$(document).ready(function(){
   $('.text_menu a').hover(function(){
     src = $(this).children('img').attr('src').replace('.gif', '_02.gif')
     $(this).children('img').attr('src', src)
   }, function(){
     src = $(this).children('img').attr('src').replace('_02.gif', '.gif')
      $(this).children('img').attr('src', src)
   })
 });