On your page, you have it like this:
HTML Code:
<table width="300" border="0" align="center" cellpadding="6" cellspacing="0" class="content">
<tr><script type="text/javascript">new fadeshow(fadeimages, 375, 276, 0, 5000, 1)</script>
</tr>
You cannot, technically speaking, put an element other than a table cell (<td>) in a table row, try:
Code:
<table width="300" border="0" align="center" cellpadding="6" cellspacing="0" class="content">
<tr><td><script type="text/javascript">new fadeshow(fadeimages, 375, 276, 0, 5000, 1)</script>
</td></tr>
Bookmarks