That problem is happening because live, your page takes so long to load that the script hasn't initialized in time to prevent the links from firing as ordinary links. There are at least two approaches you could take.
1 ) Reduce the load time of the page. The largest drain on load time of your live page are the videos. Consider having them on a separate page.
2 ) Hard code the return on the thumbnail's link tags.
This second one is probably what you should do, even if you move the videos. All you need to do is add an onclick event to each thumbnail link, example:
Code:
<a href="raw/rawedie7.jpg" onclick="return false;" rel="enlargeimage::mouseover" rev="loadarea::" title="Edie eating a chicken neck at 8 weeks."><img border="0" src="raw/rawedie7_crop_t80.jpg" width="80" height="80" style="margin-bottom: 1px"></a>
Bookmarks