It works sometimes. There is something about the galleria code on the page that sometimes prevents the page from fully loading in IE. Possibly because it sets images' display properties to 'none' before they've loaded. An image need not be loaded if its display is none, this perhaps stops loading in IE after it was started, but before it is completed. That code should be redone or discarded. It stops the cmotion script from loading because cmotion is waiting for the page to load. A workaround that doesn't fix the real problem is (addition highlighted):
Code:
<script type="text/javascript">
jQuery(function($) {
fillup();
$('.gallery_unstyled').addClass('gallery'); // adds new class name to maintain de . . .
Bookmarks