jQuery(function () { /* Top text fixes */
    var bottom_content_height = jQuery(".bottom-content").height() + 10;
    jQuery(".top-content").css("padding-bottom", bottom_content_height); /* What We've Done section height */
    var whatwevedone_height = jQuery(".whatwevedone").height();
    var slideshow_height = 0;
    jQuery("#testimonials-slideshow li").each(function () {
        if (jQuery(this).height() > slideshow_height) {
            slideshow_height = jQuery(this).height();
        }
    });
    var more_height = jQuery(".whatwevedone .more").height();
    if (!isNaN(parseInt(jQuery(".whatwevedone .more").css("bottom")))) {
        more_height += parseInt(jQuery(".whatwevedone .more").css("bottom"));
    }
    whatwevedone_height += slideshow_height;
    jQuery(".whowecanhelp .dotted-arrow").css("min-height", whatwevedone_height);
    whatwevedone_height += jQuery(".whatwevedone .more").height();
    jQuery(".whatwevedone").css("min-height", whatwevedone_height);
    jQuery(".whatwevedone").css("height", whatwevedone_height);
    jQuery(".whatwevedone").css("padding-bottom", more_height); /* All blocks height */
    var block_height = 0;
    jQuery(".block").each(function () {
        if (jQuery(this).height() > block_height) {
            block_height = jQuery(this).height();
        }
    });
    jQuery(".block").each(function () {
        //jQuery(this).css("min-height", block_height);
        jQuery(this).css("height", block_height);
    });
});
