mouseover change the picture?

mouseover change the picture?

Hi
This is my code I want to set the mouseover and change the color when the mouse goes over td with id="change" but it is nit going to work?! why is that? Also coudl you please help me how I can use jquery to change the picture od td with id"pichcnage" to 2.bmp by mouse over?
thanks

  1. <html>
  2. <head>
  3. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>

  4. <style>

  5. table,th,td{
  6. border: 1px solid black;
  7. }
  8. tr.nice td{
  9. backgroud:#1F44GG;
  10. }
  11. </style>
  12. </head>



  13. <body>
  14. <script type="text/javascript">
  15. $("document").ready(function(){

  16. $("#change").mouseover(function () {$this.addClass("nice"):} ;
  17. });
  18. </script>
  19. <div id="numbers">
  20. <table>
  21. <tr>
  22. <td id="change" >Name1</td>
  23. <td id="pichange"><a><img src="c:\1.bmp"</a></td>
  24. </tr>

  25. <tr>
  26. <td>Name2</td>
  27. <td><a><img src="c:\1.bmp"</a></td>
  28. </tr>

  29. <tr>
  30. <td>Name3</td>
  31. <td><a><img src="c:\1.bmp"</a></td>
  32. </tr>
  33. </table>
  34. <div>

  35. </body>

  36. <html>