Булат Азат улы,
<!DOCTYPE HTML>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<style type="text/css">
.textContent {
display: none;
}
.active{
background-color: #DCDCDC;
}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(function() {
var $text = $(".text"),$contex = $(".textContent");
$text.on("click", function() {
$text.not($(this).toggleClass("active")).removeClass("active");
var i = $text.index(this);
$contex.not($contex.eq(i).slideToggle()).slideUp()
})
});
</script>
</head>
<body>
<p class="text">Клик1</p>
<div class="textContent">
<p>Контент.1</p>
</div>
<p class="text">Клик2</p>
<div class="textContent">
<p>Контент.2</p>
</div>
</body>
</html>