Accordion Default

Accordion Default

Hello all,
I have a simple accordion menu which just needs one tweak to be finished. As of now, all of the accordion lists elements are closed and waiting to be opening upon load. However, I need the first element of the menu to be open by default. Any ideas? Thanks in advance!

Jquery:
  1. <script type="text/javascript">
  2. $(document).ready(function(){
  3. $("#accordian b").click(function(){
  4. //slide up all the link lists
  5. $("#accordian ul").slideUp();
  6. //slide down the link list below the h3 clicked - only if its closed
  7. if(!$(this).next().is(":visible"))
  8. {
  9. $(this).next().slideDown();
  10. }
  11. })
  12. })






  13. HTML:

  14. <ol id="accordian">
  15. <li>
  16.   <b><i>1</i>Checkout Method</b>
  17.   <ul>
  18.   <li>
  19. <p>1</p>
  20. </li>
  21. </ul>
  22. </li>
  23. <li>
  24.   <b><i>2</i>Billing Information</b>
  25.   <ul>
  26.   <li>
  27. <p>1</p>
  28. </li>
  29. </ul>
  30. </li>
  31. <li>
  32.   <b><i>3</i>Shipping Information</b>
  33.   <ul>
  34.   <li>
  35. <p>1</p>
  36. </li>
  37. </ul>
  38. </li>


  39. </ol>