рони,
В данном случае, конечно, можно и с "ul" обойтись, но этот скрипт у меня будет универсальным.
<!DOCTYPE HTML>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<style type="text/css">
.textContent {
display: none;
}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$(".text").click(function(event) {
$(this).find(".textContent:visible").slideUp();
if ($(this).next().is(":hidden")) {
$(this).next().slideDown();
}
event.stopPropagation();
});
});
</script>
</head>
<body>
<p class="text">Клик</p>
<div class="textContent">
<p>Контент.</p>
</div>
<p class="text">Клик</p>
<div class="textContent">
<p>Контент.</p>
</div>
</body>
</html>