window.addEvent('domready', function () {
	// Animation "très fortes remises"
	var animRemises = new Fx.Slide('remises', {mode: 'horizontal', duration: 700});
	animRemises.hide();
	animRemises.slideIn();
	// Clignotement "très fortes remises"
	var flashRemises = new Fx.Style('remises', 'opacity', {duration: '600'});
	flashRemises.hide();
	flashRemises.start(0.2, 0.99);
	// Clignotement encart éditorial administrable
	var effect = $('editorialcontent').effect('opacity', {duration: '1000'});
	var periodical;
	var fx = function() {
		effect.start(0.2).chain(function() { effect.start(0.99) });
		this.delay(4000);
	}
	fx();
	periodical = fx.delay(4000);
});