<!-- Throw in a nice looking font just for the fun of it -->
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:400,700,300,200"/>
<div class="wrapper">
<h1>An easy, multi-level jQuery accordion</h1>
<div id="accordion">
<div class="level">
<a href="#" class="opening">One</a>
<div class="expanded">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>
<div class="level">
<a href="#" class="opening">One - One</a>
<div class="expanded">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<a href="#" class="opening">One - Two</a>
<div class="expanded">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
</div>
<a href="#" class="opening">Two</a>
<div class="expanded">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>
</div>
</div>
</div>
</div>