Progress Bar not work in repeat region

Progress Bar not work in repeat region

Hi I have a repeat region that call a list of data from mysql database. on each line I want to display a progress bar. The issue I'm having is the the progress bar only shows for the first line?? See image below

I very new to jquery so any help would be great

Cheers Chris

  1.       <?php do { ?>
  2.         <div id="report">
  3.           <table width="100%" border="0" cellspacing="5" cellpadding="0">
  4.             <tr>
  5.               <td align="left" width="60"><?php echo $row_rsProgress['worksorder']; ?></td>
  6.               <td align="left" width="120"><?php echo $row_rsProgress['customer']; ?></td>
  7.               <td align="left" width="120"><?php echo $row_rsProgress['department']; ?></td>
  8.               <td align="left" width="60"><?php echo $row_rsProgress['status']; ?></td>
  9.               <td align="left" width="200"><div id="progressbar"></div>
  10. <script>
  11. $( "#progressbar" ).progressbar({
  12.   value: 50
  13. });
  14. </script></td>
  15.             </tr>
  16.           </table>
  17.   </div>
  18.         <?php } while ($row_rsProgress = mysql_fetch_assoc($rsProgress)); ?>