I got nothing when i use the .load() function

I got nothing when i use the .load() function

i try to load a page like this 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Untitled Document</title>
  6.     <script src="Scripts/jquery-1.5.1.js" type="text/javascript"></script>
  7.     <script src="Scripts/jquery-ui-1.8.10.custom.min.js" type="text/javascript"></script>
  8.        <link href="CSS/jquery-ui-1.8.10.custom.css" rel="stylesheet" type="text/css" /> 
  9. <script>
  10. $(function() {
  11. $( "#tabs" ).tabs({
  12. ajaxOptions: {
  13. error: function( xhr, status, index, anchor ) {
  14. $( anchor.hash ).html(
  15. "Couldn't load this tab. We'll try to fix this as soon as possible. " +
  16. "If this wouldn't be a demo." );
  17. }
  18. }
  19. });
  20. });
  21. </script>



  22. </head>

  23. <body>


  24. <div id="tabs">
  25. <ul>
  26. <li><a href="#tabs-1">Preloaded</a></li>
  27. <li><a href="ajax/content1.html">Tab 1</a></li>
  28. <li><a href="ajax/content2.html">Tab 2</a></li>
  29. <li><a href="ajax/content3-slow.php">Tab 3 (slow)</a></li>
  30. <li><a href="ajax/content4-broken.php">Tab 4 (broken)</a></li>
  31. </ul>
  32. <div id="tabs-1">
  33. <p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
  34. </div>
  35. </div>

  36. </div><!-- End demo -->



  37. <div class="demo-description">
  38. <p>Fetch external content via Ajax for the tabs by setting an href value in the tab links.  While the Ajax request is waiting for a response, the tab label changes to say "Loading...", then returns to the normal label once loaded.</p>
  39. <p>Tabs 3 and 4 demonstrate slow-loading and broken AJAX tabs, and how to handle serverside errors in those cases. Note: These two require a webserver to interpret PHP. They won't work from the filesystem.</p>
  40. </div><!-- End demo-description -->
  41. </body>
  42. </html>
I can only load the content after i delete the script's part. I would like to ask if i cannot load a page that having script?