Heya Kits! The solution is quite easy when you know about IE's wierd rendering engine. The solution lies with your 'Balanced Man' and 'Home' graphics. Here is some of your original code:
HTML Code:
<TD><IMG height=27 alt=""
src="- Sigma Phi Epsilon - Kansas Beta - Balanced Man Information -_files/banner2.gif"
width=223 border=0> </TD>
Notice the space right near the end, between the IMG and closing TD tag? In IE that renders as a space and leaves a slight gap after your image. Change the code to something like this:
HTML Code:
<TD><IMG height=27 alt=""
src="- Sigma Phi Epsilon - Kansas Beta - Balanced Man Information -_files/banner2.gif"
width=223 border=0></TD>
...And the problem vanishes! Here's the corrected HTML file. Enjoy!