Check out this example it's just ONE way(there are more):
Click twice on each Header(looks like a link)
You can also change the <SPAN> tags to <DIV>.
<html>
<head>
<script language="JavaScript">
function doit2(header)
{
var head=header.style;
if (head.display=="none"

{
head.display="";
}
else
{
head.display="none";
}
}
</script>
</head>
<body>
<H3 style="cursor:hand" onclick="doit2(document.all[this.sourceIndex+1])">SECOND HEADING HERE</H3>
<SPAN style="display: none">SECOND CONTENT HERE</SPAN>
<H3 style="cursor:hand" onclick="doit2(document.all[this.sourceIndex+1])">SECOND 2342345</H3>
<SPAN style="display: none">SECOND 2341234 CONTENT HERE</SPAN>
<H3 style="cursor:hand" onclick="doit2(document.all[this.sourceIndex+1])">SECOND asdfasdfasdf</H3>
<SPAN style="display: none">SECOND asdfasdfa CONTENT HERE</SPAN>
</body>
</html>
Hope this points you in the right direction,
Erik <!-- My sport:
Boomerang throwing !!
This year I will participate at the World Championships in Germany. (
!! Many Happy Returns !! -->