$(document).ready(function() {
    $(".fadeIn").mouseover(function() {

        $(this).find(".layerHight").fadeIn();

    });

    $(".fadeIn").mouseleave(function() {

            $(this).find(".layerHight").fadeOut();

    });
});
