$(document).ready(
	function(){		
		/* PNG Fix pour IE6 */
		$(document).pngFix();
		
		/* Paramêtre pour les diapos */
		$('.pics').cycle({ 
    fx: 'custom', 
    cssBefore: {  
        top:  0, 
        left: 0, 
        width: 0, 
        height: 0,  
        zIndex: 1  
    }, 
    animIn:  {  
        width: 399, 
        height: 301  
    }, 
    animOut: {  
        top:  301, 
        left: 399, 
        width: 0, 
        height: 0 
    }, 
    cssAfter: {  
        zIndex: 0  
    }, 
    delay: -1000 
});
	}
);