inspect(row);
System.out.println("=== Listing the menu ===");
nsIDOMNodeList cells = row.getElementsByTagName("th");
for (long i = 0, len = cells.getLength(); i < len; i++) {
nsIDOMHTMLTableCellElement cell = this.asTableCell(cells.item(i));
String text = this.exploreTableCell(cell);
System.out.println("Menu #" + (i+1) + " is " + text);
}
}