window.addEvent('domready', function() {
	if ($('informations_detaillees_magnetonic')) {
		var myAccordion = new Fx.Accordion($$('#informations_detaillees_magnetonic h3'), $$('#informations_detaillees_magnetonic p'), {
			display: -1,
			onActive: function (toggler, element) {
				toggler.setStyle ('background', 'url(/picture_library/pages/accueil/label_accordion.png) center -32px no-repeat');
				element.setStyle ('padding-top', '10px');
				element.setStyle ('padding-bottom', '10px');
			},
			onBackground: function (toggler, element) {
				toggler.setStyle ('background', 'url(/picture_library/pages/accueil/label_accordion.png) top center no-repeat');
				element.setStyle ('padding-top', '0');
				element.setStyle ('padding-bottom', '0');
			}
		});
	}
	// INFOS PROMO
	if ($('bloc_actu')) {
		// INSTANCIATION DU DIAPORAMA
		Actualites = new SlideShow ($('bloc_actu'), {
			transition: 'pushLeft',
			duration: 400,
			delay: 10000,
			autoplay: true,
			slides: $$('#bloc_actu ul li')
		});
		$('global').morph('.current');
		// SI ON A PLUS D'UNE ACTU, ON GERE LA NAVIGATION
		if (Actualites.slides.length>1) {
			var nav_actu = new Element ('ul', {id: 'nav_actu'});
			nav_actu.inject ($('bloc_actu'));
			Actualites.slides.each (function (item, index) {
				var element = new Element ('li', {html: (index+1)});
				element.inject ($('nav_actu'));	
				element.addEvent('click', function(){
					var currentIndex = Actualites.slides.indexOf(Actualites.current);
					var transition = (currentIndex < index) ? 'pushLeft' : 'pushRight';
					Actualites.show (index, { transition: transition });
				});
			});
			// EFFETS SUR LA NAVIGATION
			var navs = $('nav_actu').getElements ('li');
			Actualites.addEvent('show', function(slideData){
				navs[slideData.previous.index].morph({'color':'#fff','background-color':'#333','border-color':'#fff'});
				navs[slideData.next.index].morph({'color':'#C00','background-color':'#fff','border-color':'#C00'});
			});
			navs[0].morph({'color':'#C00','background-color':'#fff','border-color':'#C00'});
			$('nav_actu').fade ('hide');
			var hoverEvents = {
				mouseenter: function(){ 
					Actualites.pause(); 
					$('nav_actu').fade ('in');
				},
				mouseleave: function(){ 
					Actualites.play(); 
					$('nav_actu').fade ('out');
				}
			};
			$('bloc_actu').addEvents (hoverEvents);
			// GESTION DU CLAVIER
			$(document).addEvent('keyup', function(event){
				if (event.key == 'left')
					Actualites.showPrevious({ transition: 'pushRight' });
				else if (event.key == 'right')
					Actualites.showNext({ transition: 'pushLeft' });
			});
		}
	}
	//infosBox.fromElement("/flash_info.php", {size: {x: 800, y: 600}, handler: 'iframe'});
});
