It looks like you're mixing an older version of this script with the current one. The script code you have is from the current version. However, the markup you have here:
Code:
<a href="#" onMouseover="moveup()" onMouseout="clearTimeout(moveupvar)"><img src="images/up.gif" border=0></a><br />
<br /><br /><a href="#" onMouseover="movedown()" onMouseout="clearTimeout(movedownvar)"><img src="images/down.gif" border=0></a>
is from an older version. It should be:
Code:
<a href="#" onMouseover="move('container',5)" onMouseout="clearTimeout(move.to)"><img src="images/up.gif" border=0></a><br />
<br /><br /><a href="#" onMouseover="move('container',-5)" onMouseout="clearTimeout(move.to)"><img src="images/down.gif" border=0></a>
Bookmarks