// Lazy loading blocks of imagens
$(".block").lazyContent({
threshold: 0,
load: function(element) {
element.find(".loading").hide();
element.find("img").each(function() {
var $img = $(this);
$img.attr("src", $img.data("src"));
$img.load(function() { $img.addClass("loaded") });
});
element.find(".content").show();
}
});