Using and/or relying upon the <center> tag, the align="center" attribute and/or the the text-align: center; style to center anything other than text on your page is generally a bad idea. But, as far as I can see, you have done so. The quick fix in your particular case would be to change (from your page's HTML source code):
HTML Code:
<td colspan="3">
<div align="center"><div id="fadeshow1"></div></div><br /></td>
to (addition highlighted):
Code:
<td colspan="3">
<div align="center"><div id="fadeshow1" align="left"></div></div><br /></td>
Bookmarks