Разбирайся:
$(function() {
$('.Posts').each(function() {
if($(this).height() > 120) $(this).css({height: 110, marginBottom: 10}).append("<div class=\"read_more\">Читать полностью...</div>").children(".read_more").click(function(){$(this).parent().css(height:"auto")});
}
});