в скрипте http://thunder.at.ua/js/libs.js
нужно извлечь кусок
jQuery.fn.wTextSlicer = function(options){ var options = jQuery.extend({ height: '200', text: 'show more' },options); return this.each(function() { var a = $(this), h = a.height(); if ( h > options.height ) { a.addClass('slice slice-masked').height(options.height).after('<div class="slice-btn"><span>'+options.text+'</span></div>'); }; $('.slice-btn span').click(function() { var bt = $(this), a = $(this).parent().prev('.slice'); ah = parseInt(a.css("height"), 10); ah == h ? a.css({'height':options.height}) : a.css({'height':h}); bt.text(bt.text() == options.text ? "аЁаВаЕбаНббб" : options.text); a.toggleClass('slice-masked'); }); }); };
из куска там же удалить
.wTextSlicer
$(document).ready(function(){ $("body").addClass("js"); $('.show-login').wModal({ width:'320px' }); $('.show-menu').wModal({ width:'1200px' }); $('.tabs-box').wTabs(); $('.player-desc').wTextSlicer({ height: '120', text: 'Развернуть' }); $('#rels').wCarouVertical({ rows: '1', text: 'Показать еще' }); });