Yeah, it's called
Spry, it's from Adobe, it's very good, I use it.
Check out
http://labs.adobe.com/technologies/spry/sa...dionSample.html pretty simple.
Just add your HTML with the correct ID's and just one line of Javascript will turn it into what you need.
<div id="Acc1" class="Accordion">
<div class="AccordionPanel">
<div class="AccordionPanelTab">Panel 1</div>
<div class="AccordionPanelContent">
BLAH BLAH BLAH
</div>
</div>
</div>
<script type="text/javascript">
var acc1 = new Spry.Widget.Accordion("Acc1");
</script>
Oh, I should point out you need to download the whole Spry library and include the required files. If stuck, a simple Google search for 'Spry' should help you.
Edited by .CJ, 25 August 2007 - 09:30 PM.