$(document).ready(function () {


$(".novosti ul li").each(function() {
  if($(this).height() >= 65){
	$(".poveke", this).css("display","block");
	$(".poveke", this).parent().addClass("zatvoreno");
  }
});


$(".poveke").click(function () { 
	$(this).parent().toggleClass("zatvoreno");
	$(this).toggleClass("zatvori");
	$(".brs", $(this).parent()).toggleClass("brsOn");
});

	
	

});







