$(document).ready(function(){
  $(".addthis_toolbox")
      .find("a img:first-child")
      .hover(function() { 
        $(this).attr("src", $(this).attr("src").replace("_1_","_2_")); 
      }, function() {
         $(this).attr("src", $(this).attr("src").replace("_2_","_1_")); 
      })
    .end()
});
