$(function() {
  $("#header-rollovers img, #content-bottom img, #footer-top img, .copy img, #left-rollovers img").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("-hover."));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("-hover.").join("."));
  });
});

