1) Clean up your html. Look at what is in your source code:
Code:
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center" style="display: none;margin-bottom: 20px;" id="ajax_vb_status_table">
<tr>
<td class="tcat"><a style="float:right" href="#top" onclick="return toggle_collapse('statusfeed')"><img id="collapseimg_statusfeed" src="http://manlystuff.com/forum//images/raven/buttons/collapse_thead.gif" alt="" border="0" /></a>
Status Feed<!--BEGIN VB STATUS-->
</td>
</tr>
<div id="collapseobj_statusfeed" style="">
<tbody id="ajax_vb_status_rows"> </tbody>
</table>
Both of those lines in red are going to cause problems. The <div> isn't in a <tr> and it isn't closed. The <tbody> is useless. Clean up stuff like that and then work on getting things aligned. The improper html is probably causing the problem.
2) Clean up the html. I'd guess it won't close because of all the problems you are causing with your improper html.