使用しているプラグインは非常に基本的なもので、ajax リクエストを許可していないようです。
1 つの解決策は、外部 html ファイル (featured.htm、toprated.html...) に load メソッドを使用することですが、サーバーへの ajax リクエストと preload プラグインを使用するより良い方法があると確信しています。
HTML
<html>
  <head>
   ...
    <script src="http://cdn.jquerytools.org/1.2.7/full/jquery.tools.min.js"></script>
  </head>
  <body>
    ...
    <!-- tabs -->
    <ul class="css-tabs">
       <li><a href="topdownload.htm">top</a></li>
       <li><a href="featured.htm">more</a></li>
       <li><a class="selected" href="toprated.htm">default</a></li>
       <li><a href="latest.htm">free</a></li>
    </ul>
    <!-- single pane. it is always visible -->
    <div class="css-panes">
      <div style="display:block">
        <!-- loaded content here -->
      </div>
    </div>
Jクエリ
hrefここで、ajax を使用して、link 要素の取得する load メソッドを使用して外部ページをロードします。
<script>
    $(function() {
       $("ul.css-tabs").tabs("div.css-panes > div", {
            effect: 'fade',
            onBeforeClick: function(event, i) {
            // get the pane to be opened
            var pane = this.getPanes().eq(i);
                // only load once. remove the if ( ... ){ } clause if
                // you want the page to be loaded every time
            if (pane.is(":empty")) {
                // load it with a page specified in the tab's href
                // attribute
                pane.load(this.getTabs().eq(i).attr("href"));
            }
            }
        });
    });
</script>
デモ
http://jquerytools.org/demos/tabs/ajax-noeffect.htm