$(function() {
  
  var src, ftype, hsrc;

  $(".imgover img").hover(
    function (){
      src = $(this).attr("src");
      ftype = src.substring(src.lastIndexOf("."), src.length);
      hsrc = src.replace(ftype, "_o" + ftype);

      $(this).fadeTo(200, 0.70);
      $(this).attr("src", hsrc);
      $(this).fadeTo(200, 1);
    },
    function (){
      $(this).attr("src", src);
    }
  );
  $(".imgover2").hover(
    function (){
      src = $(this).attr("src");
      ftype = src.substring(src.lastIndexOf("."), src.length);
      hsrc = src.replace(ftype, "_o" + ftype);

      $(this).attr("src", hsrc);
    },
    function (){
      $(this).attr("src", src);
    }
  );
});