$().ready(function() {  
// BOX
$("a.box").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': false }); 

// CYCLE
/*$.fn.cycle.defaults = { 
    speed:         1000,  // speed of the transition (any valid fx speed value) 
    before:        null,  // transition callback (scope set to element to be shown) 
    after:         null,  // transition callback (scope set to element that was shown) 
    height:       'auto', // container height 
    sync:          1,     // true if in/out transitions should occur simultaneously 
    fit:           0,     // force slides to fit container 
    pause:         0,     // true to enable "pause on hover" 
    delay:         0,     // additional delay (in ms) for first transition (hint: can be negative) 
    slideExpr:     null,   // expression for selecting slides (if something other than all children is required) 
};*/
// ocurrence de cycle
$('.slider_home > ul').cycle({
		fx:			'fade',
		timeout:     4000
							 });
$('.offre_spe > ul').cycle({
	fx:		'scrollLeft',
	next:	'#next',
	prev:	'#prev#',
	timeout: 5000,
						   });
				   
				   });