$(document).ready(function(){
	$("div.newsDiv").find("p.newsCont").each(function(){
		if ($(this).text().length < 11){
			$(this).hide();
		}
	});
});


