$(window).load(function(){
		$(".new").each(function(i){
			if ($(".txt", this).height() < $(this).height()){
				$(".txt", this).height($(this).height()-20);
			}
		});
	});
