$(document).ready(function() {

	$(function() {
	  $("#mailroll img").hover(function() {
	    $(this).attr("src", $(this).attr("src").split(".").join("-hover."));
	  }, function() {
	    $(this).attr("src", $(this).attr("src").split("-hover.").join("."));
	  });
	});

});
