$(document).ready(function () {
  if($.browser.msie && $.browser.version < 7) {
    $('table.product_specification, table.table_only_heading, table.table_two_headings').each(function () {
      $('tr', this).each (function () {
        if($(this).parent().attr('firstChild') == this) {
          $(this).addClass('first-child');
        }
      });
      $('td', this).each (function () {
        if($(this).parent().attr('firstChild') == this) {
          $(this).addClass('first-child');
        }
      });
    })
  }
})
