<html>
<head>
<script>
var current = 'page1';
function show(id) {
	document.getElementById(current).style.display = 'none';
	document.getElementById(id).style.display = 'block';
	current = id;
}
</script>
<style>
#page2, #page3 {
	display: none;
}
</style>
</head>
<body>
<a href="#" onclick="show('page1'); return false;">Page 1</a> | 
<a href="#" onclick="show('page2'); return false;">Page 2</a> | 
<a href="#" onclick="show('page3'); return false;">Page 3</a> | 
<div id="page1">page1 page1 page1 page1 page1 page1 </div>
<div id="page2">page2 page2 page2 page2 page2 page2 </div>
<div id="page3">page3 page3 page3 page3 page3 page3 </div>
</body>
</html>
	
	| 
		
			Сообщение от Antonios
			
		
	 | 
	| 
		как прятать? с помощью чего?
	 | 
	
Меняешь стили.