Posted 24 December 2010 - 09:27 PM
I tested that and didn't see any difference, maybe I'm not using the right code.
I'm using the following:
this.find('ul.thumbs').children()
.eq(prevIndex).fadeTo('fast', onMouseOutOpacity).end()
.eq(nextIndex).fadeTo('fast', 1.0);
if(jQuery.browser.msie)
$(this).get(0).style.removeAttribute('filter');
},
onPageTransitionOut: function(callback) {
this.fadeTo('fast', 0.0, callback);
if(jQuery.browser.msie)
$(this).get(0).style.removeAttribute('filter');
},
onPageTransitionIn: function() {
this.fadeTo('fast', 1.0);
if(jQuery.browser.msie)
$(this).get(0).style.removeAttribute('filter');