// DEBUT
window.addEvent('domready', function() {
  
  // Initialisation de la SexyLightBox
  new SexyLightBox({imagesdir:'epsigon/script/sexylightbox-2.2/Mootools/sexyimages', OverlayStyles:{'background-color':'#000', 'opacity': 0.8}, find:'lightbox'});


  // Liste
  var ListeTR = $$('.liste tr');
  ListeTR.each(function(item, index) {
  
    // Variables
		var color = item.getStyle('backgroundColor');
	
  
    // Création des évènements
    item.addEvent('mouseenter', function(){

      // Préparation des effets
      item.get('morph', {duration: 100});

      // Effets
      item.morph({
        'background-color' : '#d2dbdb'
      });
    });
    
    item.addEvent('mouseleave', function(){
      
      // Préparation des effets
      item.get('morph', {duration: 1000});
      
      // Effets
      item.morph({
        'background-color' : color
      });
    });
  });
  
  
  
  $$( '.details' ).each(function(item){
  var thisSlider = new Fx.Slide( item.getElement( '.ensavoirplus' ), { duration: 500 } );
  thisSlider.hide();
  item.getElement( '.toggle' ).addEvent( 'click', function(){ thisSlider.toggle(); } );
   } );

// FIN
});

