// JavaScript Document
$(function(){
	$('div.all-in-all').hide();

	$('div.box p.more').click(function(){
		$(this).parent('div.box').children('div.all-in-all').slideToggle();
		if ($(this).children('span').text() == 'читать текст полностью') {
			$(this).children('span').text('скрыть текст');
		} else {
			$(this).children('span').text('читать текст полностью');
		}
	});
});
