$( function()
    {
        $( 'div.news-middle-content' ).each( function()
            {
                var $this = $( this );
				if ( $this.height() > 90 )
                {
                    var $text = $this.text();
					var limit = ( $text.search( /[.!?]{1}/ ) != -1 ) ? $text.search( /[.!?]/ ) : 100;
                    var shortText = $( '<div>' );
					shortText.text( $text.substring( 0, limit ) + '…' )
                             .appendTo( $this.parent() );
                    $this.hide()
                         .prev()
                         .show()
                         .css( { color: '#847441', cursor: 'pointer' } )
                         .hover( function() { $( this ).css( 'color', '#982513' ) }, function() { $( this ).css( 'color', '#847441' ) } )
                         .text( 'Подробнее…' )
                         .click( function()
                             {
                                 $( this ).next().slideToggle( 'slow' );
                                 shortText.toggle();
                              }
                         );
                }
            }
        );
    }
);
