Make tabs open and close independently.

Make tabs open and close independently.

Right now I have three tabs and one of them is always open. I would like for them to be able to all be closed to save space. 

Here is a link to the page I am asking about http://joannfitzpatrick.com/rlv/quickvalidate-premium-0720.html


According to the documentation the page is using http://jqueryui.com/tabs/#collapsible

I see that there is a script that should be added:
  <script>
  $(function() {
    $( "#tabs" ).tabs({
      collapsible: true
    });
  });
  </script>

But I have tried adding it at the bottom of the head section, right after the tabs div, and below the rest of the scripts at the bottom of the page. None of this has worked. Where do I add this code?

Thank you.