OK, you've got two opening script tags:
HTML Code:
<td><script language="JavaScript1.2" type="text/JavaScript1.2">
<script language="JavaScript1.2" type="text/javascript">
Make it like this:
HTML Code:
<td>
<script type="text/javascript">
(the language attribute is no longer needed)
Now the script will work but, after doing that you will notice that your page looks odd, with horizontal white lines where you do not want them. To fix that, change this:
Code:
var slideshow_height='125px' //SET IMAGE HEIGHT
to this:
Code:
var slideshow_height='110px' //SET IMAGE HEIGHT
Bookmarks