// POUR LE BANDEAU DU SITE
$(function() {
	$('#s2').cycle({
		speed: 8000,
		speedIn: 2000,
		speedOut: 4000,
		fx: 'custom',
		cssBefore: {
			top:  0,
			left: 0,
			width: 0,
			height: 0,
			zIndex: 1
		},
		animIn:  {
			width: 590,
			height: 100
		},
		animOut: {
			top:  200,
			left: 200,
			width: 0,
			height: 0
		},
		cssAfter: {
			zIndex: 0
		},
		delay: -1000
	});
	$('#vig1').cycle({
		fx: 'zoom', 
		easing: 'bouncein', 
		delay:  -4000 
	});
});

