Sloppy coding, there are other examples on the page, but specifically relevant to this problem, you open a div tag at the beginning of the content area:
Code:
<!--INSERT CONTENT HERE-->
<div align="center">
and never close it.
Since the whole page is a bit unorthodox, instead of fixing that, I'd suggest simply giving the table that holds the controls relative position:
Code:
<table style="position:relative;" width="700px"><td><p align="right">
<a href="#" onMouseover="moveup()" onMouseout="clearTimeout(moveupvar)"><img src="../images/up.gif" border=0></a> <a href="#" onMouseover="movedown()" onMouseout="clearTimeout(movedownvar)"><img src="../images/down.gif" border=0></a></p></td>
</table>
That will preserve the page's apparent layout (the look of the page), while at the same time making the controls accessible in FF. If you actually fixed the problem of the unclosed div tag properly, the controls for the scroller would move to the bottom of the box that holds the scrolling menu.
Bookmarks