$(document).ready(function(){
	$('#block-km_social-share .icon').hover(function() {
		  var src = $(this).attr("src").match(/[^\.]+/) + "_hover.gif";
          $(this).attr("src", src);
          
	}, function() {
		var src = $(this).attr("src").replace("_hover", "");
		$(this).attr("src", src);	
	});
});