Scraping Table Where 2 Header Rows

Hello,
I'm trying to use the table option, but am encountering an issue because the table I'm trying to scrape has an unnecessary row above the actual header row. I've included the actual HTML to the table below.

    <table width="100%" cellpadding="4" class="">
  <tbody><tr><td class="TableTitle" colspan="5">Order Items:</td></tr>
  <tr>
  	<td class="TableHeader">Item Name</td>
  	<td class="TableHeader">Part Number</td>
  	<td class="TableHeader" align="right">Quantity</td>
  	<td class="TableHeader" align="right">Unit Price</td>
  	<td class="TableHeader" align="right">Subtotal</td>
  </tr>
  <tr>
  	<td class="TableBody">Paper Towels1</td>
  	<td class="TableBody">
  			<a href="#</a>
  	</td>
  	<td class="TableBody" align="right">1</td>
  	<td class="TableBody" align="right">$25.00</td>
  	<td class="TableBody" align="right">$25.00</td>
  </tr><tr>
  	<td class="TableBody">Paper Towels2</td>
  	<td class="TableBody">
  			<a href="#" class="">Roll Number 2</a>
  	</td>
  	<td class="TableBody" align="right">1</td>
  	<td class="TableBody" align="right">$25.00</td>
  	<td class="TableBody" align="right">$25.00</td>
  </tr><tr>
  	<td class="TableBody">Paper Towels3</td>
  	<td class="TableBody">
  			<a href="#" class="">Roll Number3</a>
  	</td>
  	<td class="TableBody" align="right">1</td>
  	<td class="TableBody" align="right">$25.00</td>
  	<td class="TableBody" align="right">$25.00</td>
  </tr>
  <tr>
  <td colspan="5" class="TableFooter">&nbsp;</td></tr></tbody></table>

I'd love some assistance. Thank you in advance!
Chris

I think I got it. The issue was the table view was not refreshing upon changing the code. I cancelled the creation of the selector and started fresh with the right code so the table view would populate correctly.