$( function(){  
		var first=$('.txtinfo p:first').text();
			$('.txtinfo p:first').remove();
		var text=$('.txtinfo').html();
		$('.txtinfo').html('<p>'+first+'</p><div class="telo">'+text+'</div><span class="show">подробнее</span>');
		$('.txtinfo .show').toggle(
      		function () {
				$('.txtinfo .telo').animate({height:"show"},1000);
				$(this).text('свернуть');
			},
			function(){ 
				$('.txtinfo .telo').animate({height:"hide"},700);
				$(this).text('подробнее'); 
			}
		 );
	});// JavaScript Document
