$(function() {
  $("#read-more img, #read-more1 img, #read-more2 img, #rollovers img, #social img, #latest img, #directions-new img").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("-hover."));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("-hover.").join("."));
  });
});