Accordian content is blank on a mobile but works fine on PC browsers

Accordian content is blank on a mobile but works fine on PC browsers

Hello, I am having a strange issue with the jQuery (themeroller) accordian

it is working just fine on a desktop browsers (chrome, IE, FF, Safari) but trying it on my Android phone (S3), produces blank content in some of the panels? or the content will show sporadically. 

I'm confused why this is. Is it a bug that accordians produce or am I missing some code that may be needed?

The 3 pages that the accordian's are on are here:


the accordian code is:
  1. <link href="jQuery/jquery-ui.css" rel="stylesheet">
  2. <div id="accordion">
  3. <h3>First</h3>
  4. <div>1st area's text</div>
  5. <h3>Second</h3>
  6. <div>2nd area's text</div>
  7. <h3>Third</h3>
  8. <div>3rd area's text</div>
  9. </div>
  10. <script src="jQuery/external/jquery/jquery.js"></script>
  11. <script src="jQuery/jquery-ui.js"></script>
  12. <script>

  13. $(function() {
  14. $( "#accordion" ).accordion({
  15. collapsible: true, active: false, heightStyle: "content"
  16. });
  17. });
  18. </script>

thanks

Sara