$(function(){
	//Lazy img load
	$("#main img").lazyload({ 
		effect : "fadeIn"
	});
//Lazy img load
	$("#singlepost img").lazyload({ 
		effect : "fadeIn"
	});
});

//Domready
$(document).ready(function(){
					
equalHeight($(".cols  p"));
equalHeight($(".lp  h2"));
equalHeight($(".lp  p"));

 }); //Domready end
 
 
 /*EQUAL HEIGHTS*/
// uses: $(document).ready(function(){   equalHeight($(".col"));  });
function equalHeight(group) {
  tallest = 0;
  group.each(function() {
    thisHeight = $(this).height();
    if(thisHeight > tallest) {
      tallest = thisHeight;
    }
  });
  group.height(tallest);
}
