jQuery(document).ready(function() {
  // Catalog Download - CV
  $("#catalog-download img").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("-on."));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("-on.").join("."));
  });
  // Catalog Download - Oxygen
  $("#catalog-download-oxygen img").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("-on."));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("-on.").join("."));
  });
});

