Вариант )))
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<style type="text/css">
</style>
<script type="text/javascript">
function Go(Obj) {
var o=Obj.parentNode
var oe=o.childNodes
if (Obj!=oe[0]) o.insertBefore(Obj,oe[0])
}
</script>
</head>
<body>
<ul id="ff">
<li onclick='Go(this)'>Раздел 1</li>
<li onclick='Go(this)'>Раздел 2</li>
<li onclick='Go(this)'>Раздел 3</li>
</ul>
</body>
</html>