drag drop with mysql database

drag drop with mysql database

I'm working on drag and drop and store id number in database, i just finished that and works great but the problem is that is NOT WORKING IN IE 8 or 9. 

The problem is that in IE is not allow me to drag or move around that the problem that i can't figure out how to solve this, and rest of browser are works fine.

here is jquery code 

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"></script>

  1. <script type="text/javascript">
  2. $(document).ready(function(){
  3.  function slideout(){
  4.   setTimeout(function(){
  5.   $("#response").slideUp("slow", function () {
  6.       });
  7.     
  8. }, 2000);}
  9.     $("#response").hide();
  10. $(function() {
  11. $("#list ul").sortable({ opacity: 0.8, cursor: 'move', update: function() {
  12. var order = $(this).sortable("serialize") + '&update=update'; 
  13. $.post("updateList.php", order, function(theResponse){
  14. $("#response").html(theResponse);
  15. $("#response").slideDown('slow');
  16. slideout();
  17. });  
  18. }   
  19. });
  20. });

  21. });
  22. </script>

and body code

  1. <body>


  2.     <div id="response"> </div>
  3.     <ul>
  4.       <?php
  5.                 include("connect.php");
  6. $query  = "SELECT id, text FROM dragdrop ORDER BY listorder ASC";
  7. $result = mysql_query($query);
  8. while($row = mysql_fetch_array($result, MYSQL_ASSOC))
  9. {
  10. $id = stripslashes($row['id']);
  11. $text = stripslashes($row['text']);
  12. ?>
  13.       <li id="arrayorder_<?php echo $id ?>"><?php echo $id?> <?php echo $text; ?>
  14.         <div class="clear"></div>
  15.       </li>
  16.       <?php } ?>
  17.     </ul>
  18.   </div>
  19. </div>

doe any one can help me how to solve this to make work in IE! 
please help thanks.

AM