using each to iterate specifically from the second row

using each to iterate specifically from the second row

I have this fiddle http://jsfiddle.net/thiswolf/QupLN/ and in it i am trying to get the value of each cell for use in my form

my code so far

  1. $('#table tr').each(function() {
  2.     $.each(this.cells, function(){
  3.         alert('td');
  4.     });
  5. });

my form

  1. $('#id').val('0');
  2. $('#firstname').val('firstname');
  3. $('#lastname').val('lastname');
  4. $('#country').val('country');
  5. $('#city').val('city');
  6. $('#town').val('town');
  7. $('#gender').val('gender');
It would be my wish to have each cell in an array such that

  1. $('#firstname').val(cellValue[1]);
after the iteration

In my fiddle,i have the values and indexes of all rows available so.The problem is on how i get the value of each cell of a given row identified by a given index.