SavaSavichev,
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Документ без названия</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$(".button").click(function () {
$(this).parent().next().slideToggle();
return false
});
});
</script>
<style type="text/css">
.toogle {display:none;}
</style>
</head>
<body>
<div id="wrapper">
<div id="content">
<div>Текст1</div>
<div><a class="button" href="#">Подробнее</a></div>
<div class="toogle">Текс2</div>
</div>
<div id="footer"></div>
</div>
</body>
</html>