function initShowMoreLink() {
$(".show-more").click(function(){
var that = this;
$.ajax({
url: $(that).data("url"),
type: "GET",
success: function(response) {
$(that).closest(".row").replaceWith(response);
initShowMoreLink();
calculateLikes(response);
}
});
return false;
});
}