$(document).ready(function() {
    $(".website-block").click(function() {
        if ($(this).height() == 130) {
            $(this).animate({height: $(this).children("img").height() + 30 + $(this).children(".meta").height()});
                $(this).children("a").animate({marginBottom: $(this).children(".meta").height()});
        } else {
            $(this).animate({height: 130});
            $(this).children("a").animate({marginBottom: 0});
        }
    });
});
