<style>
#theMenu, #theMenu ul { list-style:none; width:15em;margin:0;padding:0; }
#theMenu a { background:#F6F6F6; color:#010101;
display:block; font-weight:bold; padding:0.5em 1em; text-decoration:none;
border:1px solid #DFDFDF;
}
#theMenu ul a { background:#F6F6F6; color:#010101;
font-weight:normal; text-decoration:none;
}
#theMenu ul a:hover { background:#F0EBE1; text-decoration:underline; color:#711515; }
</style>
<body>
<script type="text/javascript" src="jquery-1.11.1.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#theMenu > li > a").not(":first").find("+ ul").slideUp(1);
$("#theMenu > li > a").click(function () {
$(this).find("+ ul").slideToggle("fast");
});
});
</script>
<ul id="theMenu">
<li><a title="open or close this section" href="#">Практика 2</a>
<ul>
<li><a href="#">Задание 3</a></li>
<li><a href="#">Задание 4</a></li>
</ul>
</li>
<li><a title="open or close this section" href="#">Практика 5</a>
<ul>
<li><a href="#">Задание 2</a></li>
<li><a href="#">Задание 3</a></li>
<li><a href="#">Задание 4</a></li>
</ul>
</li>
</ul>