How to apply behavior to a repeating DIV with same ID?

How to apply behavior to a repeating DIV with same ID?

I have posted this question in the old forum but once jQuery moved to Zoho, I've lost my threads so I'm starting my thread over again here.

I have a ASP.NET nested ListView control that repeats a DIV with same ID. How do I use jQuery to apply the behavior to a Div that contains a unique TextBox control ID? Below are my code:

   
  1.  $("textarea[id$=txtInsertComments]").blur(function()
  2.             {
  3.                 $("#commands").hide()
  4.             });
  5.             $("textarea[id$=txtInsertComments]").focus(function()
  6.             {          
  7.                 //$("#commands").show("normal");
  8.                 $(this).next("#commands").show("normal");
  9.             })

And here's what the asp.net code of the DIV:

                               

   
  1.  <asp:TextBox ID="txtInsertComments" AutoPostBack="false" CssClass="expanding" runat="server"
  2.                                     Width="406px" Text='<%# Bind("comments") %>' TextMode="MultiLine" />
  3.                                 <ajaxToolkit:TextBoxWatermarkExtender ID="TextBoxWatermarkExtender3" runat="server"
  4.                                     TargetControlID="txtInsertComments" WatermarkText="Write your comments" WatermarkCssClass="waterMarkText">
  5.                                 </ajaxToolkit:TextBoxWatermarkExtender>
  6.                                 <%--This the following div if I figured how to get jQuery to recognize repeating div with same ID  --%>
  7.                                 <div id="commands" style="display: none;">
  8.                                     <table cellpadding="0" cellspacing="0" width="400px" id="tblCommands">
  9.                                         <tr>
  10.                                             <td style="width: 50%; text-align: center;">
  11.                                                 <asp:LinkButton ID="lnbInsertRes" runat="server" CommandName="Insert" Font-Underline="false">Insert</asp:LinkButton>
  12.                                             </td>
  13.                                             <td style="width: 50%; text-align: center;">
  14.                                                 <asp:LinkButton ID="lnbCancelRes" runat="server" CommandName="Cancel" Font-Underline="false">Cancel</asp:LinkButton>
  15.                                             </td>
  16.                                         </tr>
  17.                                     </table>
  18.                                 </div>

The whole code above repeats inside the ListView control. The DIV ID="command" is what I want to apply the jQuery behavior above to but only to the DIV ID="command" that the user clicks on the TextBox ID="txtInsertComments". Any suggestion is much appreciated.