This user's posts are being ignored.
Show Post?
Also bear in mind, you are opening with <tr>, which you should be opening with <table>. That's the big problem there.
When you were opening with TR, you were adding a row to table in the layout, and then when you did </table>, you were closing a layout table (that is, a table that's used in the layout of your site), causing the remaining menus to freak out.
But if you open with <table> and close with </table>, you should be good to go. In your case, because you're opening with <tr> and closing with </tr>, it's just adding a row to an existing table, which happens to work alright for your current template, but if you were to change templates, it's not guaranteed to work.
--
It's all in the reflexes.