Problem with table row show/hide on Firefox 3.6

Problem with table row show/hide on Firefox 3.6

Hello

We have a table with some lines are hidden. The user has the option to show them, trough a link. It was working until the last Firefox upgrade. We are using the show method to display the hidden rows.

On the Firefox 3.6, after call the show method as $(".cls_receita").show() , the css attribute "display" is setted as "block". In all of other browsers, this property is setted as "table-row".

When the property is setted as "block" all line (<tr>) is displayed on a unique column. That can be seen on the attached files, one of them on the Firefox 3.6 and another on the Firefox 3.5.8.

We can solve this problem using $(".cls_receita").css("display", "table-row"), but we have a lot of occurences of the show method used on tables arround the system, and it was working well before the Firefox 3.6. Does anyone have the same problem?

Thank you.