/**
 * @author Alkyos
 */
$(document).ready(function(){

	$('#diapo img:eq(1)').show();

	var stack = []; 
 
    // preload images into an array; we will preload beach3.jpg - beach8.jpg 
    for (var i = 3; i < 9; i++) { 
        var img = new Image(300,211); 
        img.src = './images/dia_pres/pres_' + i + '.jpg'; 
        $(img).bind('load', function() { 
            stack.push(this); 
        }); 
    }  
 
    // start slideshow 
    $('#diapo').cycle({
		fx: 'fade',
		speed: 2000,
        timeout:  4000, 
        before:   onBefore 
    }); 
 
    // add images to slideshow 
    function onBefore(curr, next, opts) { 
        if (opts.addSlide) // <-- important! 
            while(stack.length) 
                opts.addSlide(stack.pop());  
    }; 
	
});
