You have so many scripts on that page, I'm surprised any of them work, even part of the time. One thing in your source that can't be good is this at the end of the page:
HTML Code:
<!-- --><script type="text/javascript" src="/i.js"></script>
<!-- --><script type="text/javascript" src="/i.js"></script></body>
</html>
A script should only be linked once to a page. Most likely you copied your own source code from the site and it had already had this added to it by the server, then you uploaded the page and it got added again by the server.
Another thing I notice in your gallerystyle.css file is this line:
Code:
width: 335x; /* Set to gallery width, in px or percentage */
That should be px and probably should be more like 320px.
A recent bug fix for motiongallery.js changes this function at the end of the script as shown:
Code:
onresize=function(){
if (typeof motioncontainer!=='undefined'&&motioncontainer.filters){
motioncontainer.style.width="0";
motioncontainer.style.width="";
motioncontainer.style.width=Math.min(motioncontainer.offsetWidth, maxwidth)+'px';
}
menuwidth=crossmain.offsetWidth;
cross_scroll.style.left=startpos? (menuwidth-actualwidth)/startpos+'px' : 0;
}
The first two issues point to sloppy coding in general and indicate that there may be many more of these type of glitches, any of which may contribute to the problem, if fixing the above three things doesn't take care of it.
Bookmarks