$(function () {
    $('#testimonial-block').load('testimonial-block.html', function () {
        $('#testimonial-block blockquote').click(function () {
            var id = $(this).attr('id');
            location = "testimonials.html#" + id;
        });

        $('#testimonial-block').cycle({
            fx: 'scrollUp',
            pause: true
        });
    });

    if ($('#social').length == 0) {
        var p = $('#testimonial-wrapper').position();
        var bottom = parseInt($('#testimonial-wrapper').height());
    }
    else {
        var p = $('#social').position();
        var bottom = parseInt($('#social').height());
    }

    $('#phone').css('top', parseInt(p.top) + bottom + 7 + 'px');

    var copy_height = parseInt($('#copy').height()) + 115;
    var nav_height = parseInt($('#nav').height()) + parseInt($('#phone').height()) + 115;

    $('#content').css('height', Math.max(copy_height, nav_height) + 'px');
});

