$(document).ready(function() {
	$('#imgBigCollection').cycle({ 
    fx:     'fade', 
    delay:  -2000,  
    timeout: 5000,
    before:   onBefore  
	});


    function onBefore(curr, next, opts) { 
        if (!opts.addSlide) 
            return; 
 
        // on Before arguments: 
        //  curr == DOM element for the slide that is currently being displayed 
        //  next == DOM element for the slide that is about to be displayed 
        //  opts == slideshow options 

		curr.style.display = 'none';             
    }; 
});	