$(document).ready(function() {
	
	
	var stack = []; 
 
    // preload images into an array;
    for (var i = 3; i < 6; i++) { 
        var img = new Image(384,389); 
        img.src = 'images/img_home_photo_' + i + '.jpg'; 
        $(img).bind('load', function() { 
            stack.push(this); 
        }); 
    }  
	
	
    $('.HomeCaro').cycle({
		fx: 'fade',
		timeout:       3500, 
    	speed:         1000, 
    	next:          null, 
    	prev:          null, 
    	after:         null, 
    	pause:         0,    
    	delay:         3000, 
		before: onBefore
	});

 
    // add images to slideshow 
    function onBefore(curr, next, opts) { 
        if (opts.addSlide) // <-- important! 
            while(stack.length) 
                opts.addSlide(stack.pop());
			
    }; 
	
});
