2 jquery wont work?

2 jquery wont work?


i got this problem with jquery. i got a accordion menu and tabs. now
they wont work together. the accordion will work but not the tabs,
only if i remove the accordion script and file the tabs will work..
how to i make both work?
here is the code i use for the <head>
if anybody know why this is happening im really appriciateting all
help i get.. thx
<link href="../Content/theme/ui.all.css" rel="stylesheet" type="text/
css" />
<link href="../Content/Css/Admin.css" rel="stylesheet" type="text/
css"
<link href="../Content/Css/demo.css" rel="stylesheet" type="text/
css" />
<script type="text/javascript" src="http://ajax.googleapis.com/
ajax/libs/jquery/1.3.1/jquery.min.js"></script>
<script src="../Content/jquery.accordion.js" type="text/
javascript"></script>
<script src="../Content/Script/ui.core.js" type="text/
javascript"></script>
<script src="../Content/Script/ui.tabs.js" type="text/
javascript"></script>
<script type="text/javascript" src="http://ui.jquery.com/testing/
ui/ui.datepicker.js"></script>
<script language="javascript" type="text/javascript">
jQuery().ready(function() {
jQuery('#list1b').accordion({
autoheight: false,
alwaysOpen: false,
active: true
});
});
$(document).ready(function() {
$("#tabs").tabs();
$(".datepicker").datepicker();
});
</script>