// JavaScript Document
 
$(function() {
  $("a .poff").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".png").join("_over.png"));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("_over.png").join(".png"));
  });
});

$(function() {
  $("a .off").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".jpg").join("_over.jpg"));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("_over.jpg").join(".jpg"));
  });
});
  
$(function() {
  $(".sup-submit").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".png").join("_over.png"));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("_over.png").join(".png"));
  });
});
 