Nothing is Working for me in IE8

Nothing is Working for me in IE8

Not even with compatibility mode, nothing works at all, Jquery is simply not running, I'm trying to make the following simple code working:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.     <title>Untitled Document</title>
  6.     <script type="application/javascript" language="javascript" src="scripts/jquery-1.3.2.min.js"></script>
  7.     <script type="application/javascript" language="javascript">
  8. $(window).load(function(){
  9. $('li.animated').mouseover(function(){
  10. $(this).addClass('active');
  11. });
  12. $('li.animated').mouseout(function(){
  13. $(this).removeClass('active');
  14. });
  15. $('[bxTab]').click(function(){
  16. $('.tabbed').css('display','none');
  17. $('#'+$(this).attr('bxTab')).css('display','block');
  18. });
  19. });
  20. </script>
  21.     <style type="text/css">
  22.      .active{
  23. background-color:#66CCFF;
  24. display:block;
  25. cursor:pointer;
  26. }
  27.     </style>
  28. </head>
  29. <body>
  30. <ul>
  31.         <li class="animated" bxTab="home_pane">Home</li>
  32.         <li class="animated" bxTab="news_pane">News</li>
  33.         <li class="animated" bxTab="project_pane">Project Outline</li>
  34.         <li class="animated" bxTab="gallery_pane">Gallery</li>
  35.         <li class="animated" bxTab="downloads_pane">Downloads</li>
  36.         <li class="animated" bxTab="links_pane">Links</li>
  37.     </ul>
  38.     <div id="home_pane" class="tabbed">Home</div>
  39.     <div id="news_pane" class="tabbed">News</div>
  40.     <div id="project_pane" class="tabbed">Project</div>
  41.     <div id="gallery_pane" class="tabbed">Gallery</div>
  42.     <div id="downloads_pane" class="tabbed">Downloads</div>
  43.     <div id="links_pane" class="tabbed">Links</div>
  44. </body>
  45. </html>
I went even so far as using the jquery version that ships with visual studio (after the most recent version I downloaded from jquery.com yielded the same dead results). Can anyone tell me why? I've also tried using $(document).ready and simply $() and both cases didn't work either.