admiral,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.content:nth-child(n+4){
display: none;
}
.open{
cursor: pointer;
font-weight: bold;
margin: 0 8px;
}
.active{
color: #FFFFFF;
background-color: #A9A9A9;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
var cont = $(".content:nth-child(n+4)"),
first = cont.first();
cont.each(function(indx, el) {
$("<a/>", {
"class": "open",
text: ++indx,
on: {
click: function(event) {
event.preventDefault();
$(".open").not($(this).addClass("active")).removeClass("active");
cont.not($(el).slideToggle()).slideUp()
}
}
}).insertBefore(first)
})
});
</script>
</head>
<body>
<div class="content">Тут контент, html код</div>
<div class="content">Тут контент, html код</div>
<div class="content">Тут контент, html код</div>
<div class="content">Тут контент, html код 4</div>
<div class="content">Тут контент, html код 5</div>
</body>
</html>