<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<style type="text/css">
div.hideCont { display:none; }
</style>
<script>
$(function() {
$('span.modBtn').click(function() {
var b = $(this), m = b.data('swap');
m.unshift(m.pop());
b.next().slideToggle(600);
b.text(m[0]).data({swap: m});
}).data({swap: ["Подробнее", "Свернуть"]})
});
</script>
</head>
<body>
<div class="ba_item_in group">
<div class="ba_item_desc">
<p>текст текст текст</p>
<div class="hideWrap">
<span class="modBtn">Подробнее</span>
<div class="hideCont">
<p>текст текст текст</p>
</div>
</div>
</div>
</div>
</body>
</html>