$(function() {


  $(".n3 p").ThreeDots({ max_rows:14,ellipsis_string:' <a class="bold colour more" href="">&nbsp;Read more ...</a>' });
  $(".n2 p").ThreeDots({ max_rows:8,ellipsis_string:' <a class="bold colour more" href="">&nbsp;more ...</a>' });
  $(".n2 h4").ThreeDots({ max_rows:2 });
  $(".n4 p.dots").ThreeDots({ max_rows:2,ellipsis_string:' <a class="bold colour" href="">...</a>' });
   

 $(".events1 p").ThreeDots({ max_rows:3,ellipsis_string:' <a class="more bold colour" href="">...</a>' });

 $(".n2").each(function(){
$(this).find(".more").attr("href",$(this).find("h4 a").attr("href"));
}); 

 $(".n3").each(function(){
$(this).find(".more").attr("href",$(this).find("h3 a").attr("href"));
}); 

$(".events1").each(function(){
$(this).find(".more").attr("href",$(this).find("h3 a").attr("href"));
}); 

});



