reload every few seconds, IE problem

reload every few seconds, IE problem

I wan't to display content from php file that changes every few seconds.

I got it working in FF 3, Chrome, Opera 9.62, Safari 3.2
And IE 8 doesn't work

With this piece of code
<head>
  <script src="templates/common/js/jquery.js"></script>
  <script>
  $(document).ready(function()
  {
   var refreshId = setInterval(function()
   {
    $('#timeval').load('ajaxTime.php?randval='+ Math.random());
   }, 1000);
  });
   </script>
<title>Otvoreni radio</title>
</head>
<body>
<tr>
<td class="otvoreni"><a href="http://www.otvoreni.hr" target="blank" ><strong>Otvoreni: </strong></a>
<marquee width=35% BEHAVIOR=ALTERNATE  scrollamount="1" scrolldelay="50" onMouseOver="this.stop()" onMouseout="this.start()">
<output id="timeval">
</marquee>
<a href="http://www.otvoreni.hr/UserDocsImages/stream64.pls" alt="Live Stream Winamp">
<img src="images/winamp_small.png" /></a></td></tr>
</body>


Could someone, check it, and help me to get it working in IE