I don't know if this has anything to do with it but, you have two problems with your motiongallery.js - One just recently came up and is a bug fix. At the end of the script, change the last line of the onresize=function():
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 other problem is that your (from your copy of the script):
Code:
//3) Set to maximum width for gallery - must be less than the actual length of the image train.
var maxwidth=1000;
Is too large. Your image train is only about 950px wide, so use 900 or less.
As I say, this may not help with your problem though. What you may need to do is to take things off of the page one at a time to see what might be causing it.
Bookmarks