$(document).ready(function() {
  $("#links img, #rollovers img, #dc img, #button img").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("-hover."));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("-hover.").join("."));
  });  
});

