I did a search on this but couldnt find anything like this.

I am trying to load the pages inside the jQuery panel. I found this example which works fine http://www.coldfusionjedi.com/demos/jquerytabs/test.cfm

But when I use the code on my page it does not work. Everything looks fine, it loads the CSS and all, but when I click on a tab I get an error...

Message: Exception thrown and not caught
Line: 121
Char: 6144
Code: 0
URI: ../jquery/js/jquery-ui-1.7.2.custom.min.js

Here is my code. Can anyone see what I am doing wrong? Thanks for the help.

PHP Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
    <
head>
        <
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
        <
title>jQuery UI Example Page</title>
        <
link type="text/css" href="../jquery/css/start/jquery-ui-1.7.2.custom.css" rel="stylesheet" />    
        <
script type="text/javascript" src="../jquery/js/jquery-1.4.1.min.js"></script>
        <
script type="text/javascript" src="../jquery/js/jquery-ui-1.7.2.custom.min.js"></script>

<
script
$(
document).ready(function() {
    $(
"#example").tabs();                       
});
</
script>
</
head>
 
<
body>
 
<
div id="example">
     <
ul>
         <
li><a href="home.php"><span>Content 1</span></a></li>
         <
li><a href="home.php"><span>Content 2</span></a></li>
         <
li><a href="home.php"><span>Content 3</span></a></li>
     </
ul>
</
div>
 
</
body>
</
html