0xSS,
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>
.forAdmin {
display:none;
}
.forAdmin.show {
display:block;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(window).load(function(event){
$('#button').click(function(){
$('.forAdmin').toggleClass('show');
});
});
</script>
</head>
<body>
<button id='button' name="push" type="submit" value="Кнопка">Кнопка</button>
<ul>
<li>
<h1>Заголовок 1</h1>
<a class='forAdmin' href='/'>Ссылка 1</a><br/>
<a class='forAdmin' href='/'>Ссылка 2</a>
</li>
<li class='forAdmin'>
<h1>Заголовок 2</h1>
<a class='forAdmin' href='/'>Ссылка 3</a><br/>
<a class='forAdmin' href='/'>Ссылка 4</a>
</li>
</ul>
</body>
</html>