To disappear from Image to Image, rather than Image to White to Image, you must set the speed attribute to zero, for example.
$('#content .slider .inner') .jCarouselLite( { afterEnd : function(el) { $(el).parent().fadeTo(500, 1); }, beforeStart : function(el) { $(el).parent().fadeTo(500, 0); }, speed : 0 } );
source share