$(window).load(function () {
    setOverlayTop();
});

var setOverlayTop = function () {
    var contentHeight = $('.bottom-wide').outerHeight();
    $('.gray-overlay-top').height(contentHeight);
    $('.bottom-wide').show();
    $('.gray-overlay-top').css('background-color', '#E6EAEC');
    $('.gray-overlay-top').show();

    var counter = 0;
    var tototalImages = $('.bottom-wide img').length;

    if (tototalImages) {
        $('.bottom-wide img').each(function () {
            $(this).load(function () {
                counter++;
                if (counter == tototalImages) {
                    var contentHeight = $('.bottom-wide').outerHeight();
                    $('.gray-overlay-top').height(contentHeight);
                }
            });
        });
    }
};
