﻿window.addEvent('domready', function(){


/* Fading catégories page d'acc */

var acccats = $('accpdts').getElements('li');

acccats.each(function(fad){

var acch = fad.getElement('.plusloin');
acch.set('opacity', 0);
acch.set('tween', {duration: 300});
var titrecat = fad.getElement('h2 a');
titrecat.set('tween', {duration: 300});

var reveal=function(){
acch.tween('opacity', 1);
titrecat.tween('color', '#e09898');
};

var unreveal=function(){
acch.tween('opacity', 0);
titrecat.tween('color', '#e8dbca');
};

fad.addEvents({'mouseenter': reveal, 'mouseleave' : unreveal});
});



 
 /* DIAPORAMA sur script de David Walsh */
 
  /* settings */ 
  var showDuration = 5000; 
  var container = $('diaporama'); 
  var images = container.getElements('li'); 
  var currentIndex = 0; 
  var interval;
  images.set('tween', {duration: 1000});
 
  /* opacity and fade */ 
  images.each(function(img,i){ 
    if(i > 0) { 
      img.set('opacity',0); 
    } 
  }); 
  /* worker */ 
  var show = function() { 
    images[currentIndex].tween('opacity', 0); 
    images[currentIndex = currentIndex < images.length - 1 ? currentIndex+1 : 0].tween('opacity', 1); 
  }; 
  /* start once the page is finished loading */ 
  window.addEvent('load',function(){ 
    interval = show.periodical(showDuration); 
  }); 


/* Pour ôter l'argument "TITLE" des images en thumbnail */
  
var imtit = $('accpdts').getElements('img');
imtit.each(function(im){
im.setProperty('title', '');});
  

  /* Pour ôter l'argument "TITLE" du top nav */
  
var atitl = $('soustitre').getElements('li a');
atitl.each(function(at){
at.setProperty('title', '');});

 

/* PAS TOUCHE !!!! */	
}) ;
/* FIN*/






 

