Onclick Message button to remove or reset the Table Row Style

Onclick Message button to remove or reset the Table Row Style

Dear Jquery Expertist,

I am asp.net developer. 
The 2nd row of table was green color because That is Unread Message was = True.
After user clicked on 2nd row Messagging button, a new windows page will pop up.
In the meantime, i want to reset the clicked table row style and change the Unread Message from True to False if It is True.
May i know how to do that by using Jquery?
  1.  <table cellspacing="0" cellpadding="2" id="MainContent_GridView1" style="border-width: 1.0px;border-style: None;font-size: Small;border-collapse: collapse;">
  2.       <tbody>
  3.          <tr class="GvHeader">
  4.             <th scope="col">
  5.                Project ID 
  6.             </th>
  7.             <th scope="col">
  8.                <a>
  9.                   Serial Number 
  10.                </a>
  11.             </th>
  12.             <th scope="col">
  13.                <a>
  14.                   Project Name 
  15.                </a>
  16.             </th>
  17.             <th scope="col">
  18.                <a>
  19.                   Project
  20.                   Status 
  21.                </a>
  22.             </th>
  23.             <th scope="col">
  24.                <a>
  25.                   Person In Charge 
  26.                </a>
  27.             </th>
  28.             <th scope="col">
  29.                <a>
  30.                   Unread Message 
  31.                </a>
  32.             </th>
  33.          </tr>
  34.          <tr style="border-color: Black;border-width: 1.0px;border-style: Solid;">
  35.             <td>
  36.                <input type="submit" name="ctl00$MainContent$GridView1$ctl03$btn_Message" value="Messagging" id="MainContent_GridView1_btn_Message_0" title="Messagging" />
  37.             </td>
  38.             <td>
  39.                G5-10001123 
  40.             </td>
  41.             <td>
  42.                123
  43.             </td>
  44.             <td>
  45.                Initial negotiation with Customer - お客様との最初の交渉 
  46.             </td>
  47.             <td>
  48.                David 
  49.             </td>
  50.             <td>
  51.                &nbsp; 
  52.             </td>
  53.          </tr>
  54.          <tr style="background-color: Green;border-color: Black;border-width: 1.0px;border-style: Solid;">
  55.             <td>
  56.                <input type="submit" name="ctl00$MainContent$GridView1$ctl04$btn_Message" value="Messagging" id="MainContent_GridView1_btn_Message_1" title="Messagging" />
  57.             </td>
  58.             <td>
  59.                G5-10001 
  60.             </td>
  61.             <td>
  62.                P/S No:
  63.                1GD-001 
  64.             </td>
  65.             <td>
  66.                Mass production 
  67.             </td>
  68.             <td>
  69.                David 
  70.             </td>
  71.             <td>
  72.                True 
  73.             </td>
  74.          </tr>
  75.          <tr style="border-color: Black;border-width: 1.0px;border-style: Solid;">
  76.             <td>
  77.                <input type="submit" name="ctl00$MainContent$GridView1$ctl05$btn_Message" value="Messagging" id="MainContent_GridView1_btn_Message_2" title="Messagging" />
  78.             </td>
  79.             <td>
  80.                G3-10012 
  81.             </td>
  82.             <td>
  83.                P/S No:
  84.                1GD-001 
  85.             </td>
  86.             <td>
  87.                Mass production 
  88.             </td>
  89.             <td>
  90.                David 
  91.             </td>
  92.             <td>
  93.                &nbsp; 
  94.             </td>
  95.          </tr>
  96.          <tr style="border-color: Black;border-width: 1.0px;border-style: Solid;">
  97.             <td>
  98.                <input type="submit" name="ctl00$MainContent$GridView1$ctl06$btn_Message" value="Messagging" id="MainContent_GridView1_btn_Message_3" title="Messagging" />
  99.             </td>
  100.             <td>
  101.                G1-100031 
  102.             </td>
  103.             <td>
  104.                Project
  105.                Name 
  106.             </td>
  107.             <td>
  108.                Mass production 
  109.             </td>
  110.             <td>
  111.                David 
  112.             </td>
  113.             <td>
  114.                &nbsp; 
  115.             </td>
  116.          </tr>
  117.       </tbody>
  118.    </table>

Thank you.