not sure if this would cause it but start by removing your inline css to see if thats the problem
Code:
<td id="navbar_search" height="35" width="125" bgcolor="#F5F5FF" style="border-top:1px solid #CACACA; border-bottom:1px solid #CACACA; padding-right:10px"><b>
change to
Code:
<td id="navbar_search" height="35" width="125"><b>
Also, i'm not real sure why you did
Code:
<td id="navbar_search" height="35" bgcolor="#F5F5FF" width="35" style="border-top:1px solid #CACACA; border-bottom:1px solid #CACACA; border-right:1px solid #CACACA; padding-right:5px">
<div class="smallfont">
<a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out()" style="text-decoration: none; font-weight:700">
<center>
<img border="0" src="http://talkjesus.com/images/menu/exit.gif" alt="Logout"></a></div></center>
</td>
You'd be better off
Code:
<td id="navbar_search" height="35" bgcolor="#F5F5FF" width="35" style="border-top:1px solid #CACACA; border-bottom:1px solid #CACACA; border-right:1px solid #CACACA; padding-right:5px">
<div align="center">
<a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out()" style="text-decoration: none; font-weight:700">
<img border="0" src="http://talkjesus.com/images/menu/exit.gif" alt="Logout"></a></div>
</td>