I looked into this further and the real fix is to give the <nobr> tag on the display page an id like so:
HTML Code:
<div id="motioncontainer" style="position:relative;width:400px;height:150px;overflow:hidden;">
<div id="motiongallery" style="position:absolute;left:0;top:0;white-space: nowrap;">
<nobr id="trueContainer"><a href . . . snip!
Then in the original motiongallery.js script, change this line:
Code:
actualwidth=document.all? cross_scroll.offsetWidth : document.getElementById("temp").offsetWidth
to this:
Code:
actualwidth=document.all? cross_scroll.offsetWidth : document.getElementById("trueContainer").offsetWidth
There now, that's alot easier, huh?