$(document).ready( function() {
  $(".oPhoto img").mouseover( function() {
    var changeSrc = $(this).attr("rel");
    $(".mPhoto img").fadeOut(
      "fast",
      function() {
        $(this).attr("src", changeSrc);
        $(this).fadeIn();
      }
    );
  });
});
