jQuery UI test
HTML
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.9.1/themes/blitzer/jquery-ui.css">
<div id="accordion">
<h3>Section 1</h3>
<div>
<p>
A
</p>
</div>
<h3>Section 2</h3>
<div>
<p>
A
</p>
</div>
<h3>Section 3</h3>
<div>
<p>
A
</p>
</div>
</div>
JavaScript
$(document).ready(function() {
$("#accordion").accordion({ header: "h3", collapsible: true, active: false });
});