$(function(){
  $(".b-about .images .b-image").each(function(){
    var img = $(this);
    img.hover(
      function(){
        if(img.hasClass("img1")){
          $(".img2").css("z-index", "40");
        }
        img.css("z-index", "50");
      },
      function(){
        if(img.hasClass("img1")){
          $(".img2").css("z-index", $(".img2").attr("z-index"));
        }
        img.css("z-index", img.attr("z-index"));
      }
    );
  });
});