Jquery Draggable conflicting with another script? Possibly ui.tabs

Jquery Draggable conflicting with another script? Possibly ui.tabs


Hi
I have the ui.tabs jquery script on my site and I just added another
plugin(jquery alertbox) that uses ui.draggable script and now my tabs
are gone. I am not sure if there is a conflict between these 2 scripts
or if some other conflict.
If I remove the ui.draggable the tabs come back. if I leave both the
ui.tabs and draggable I loose the tabs but the dragging still works.
The only error I get is this:
[code] $[namespace][name] is not a constructor
http://localhost:4791/Planner/Javascripts/ui.core.js
Line 264 [/code]
it then goes to the ui.core script
[code] // handle initialization and non-getter methods
259 return this.each(function() {
260 var instance = $.data(this, name);
261
262 // constructor
263 (!instance && !isMethodCall &&
264 $.data(this, name, new $[namespace][name](this, options))._init
());
265
266 // method call
267 (instance && isMethodCall && $.isFunction(instance[options]) &&
268 instance[options].apply(instance, args));
269 });
270 };
271 [/code]
I am using the developer way of getting the scripts not the UI builder
since I never liked the fact that the UI builder built it into one big
file.
I am using the UI version: 1.6rc6: jQuery 1.3+
So I am not sure if maybe because this is a beta one or something that
could be the reason. So should I try to the stable version? I am not
sure if that will cause more problems or not though.
here all the header scripts I have
[code]
<script src="../Javascripts/ui.core.js" type="text/
javascript"></script>
<script src="../Javascripts/ui.tabs.js" type="text/
javascript"></script>
<script src="../Javascripts/jquery.callout-min.js" type="text/
javascript"></script>
<script src="../Javascripts/jquery.corners.min.js" type="text/
javascript"></script>
<script src="../Javascripts/jquery.colorPicker.js" type="text/
javascript"></script>
<script src="../Javascripts/jquery.ui.draggable.js" type="text/
javascript"></script>
<script src="../Javascripts/jquery.alerts.js" type="text/
javascript"></script>
[/code]
Thanks