radio button selection not changing

radio button selection not changing

I have the following script;

  1. <script>
  2.         $(document).ready(function () {
  3.             $('#radiobtnPanel input[type="radio"]').each(function () {
  4.                 if ($(this).is(':checked')) {
  5.                     $('#radiobtnPanel  label').css('color', '#008000');
  6.                 }
  7.                 else {
  8.                     $('#radiobtnPanel  label').css('color', '#000');
  9.                 }
  10.             });
  11.         });
  12. </script>


Here is the markup from my aspx page;
  1. <fieldset class="registerradio">
  2.                         <legend>Select a Category</legend>
  3.                       <asp:Panel ID="radiobtnPanel" runat="server" CssClass="radioPanel">
  4.                         <asp:RadioButton ID="radioUserEmployee" runat="server" GroupName="radioCreateUsers" Text="Employee" TextAlign="Left"  />
  5.                         <asp:RadioButton ID="radioUserDistributor" runat="server" GroupName="radioCreateUsers" Text="Distributor" TextAlign="Left"/>
  6.                         <asp:RadioButton ID="radioUserCustomer" runat="server" GroupName="radioCreateUsers" Text="Existing Customer" TextAlign="Left"/>
  7.                         <%--<asp:RadioButton ID="radioUserOther" runat="server" GroupName="radioCreateUsers" Text="Other" TextAlign="Left"/>--%>
  8.                       </asp:Panel>
  9.   </fieldset>     

  10. The selected radio button color is not changing