function mail() 
{
   var monmail = "<a href=\'mailto:";
   monmail += "contact@";
   monmail += "sagapo.fr\' title=\'courriel pour nous contacter\'>";
   monmail += "contact";
   document.write(monmail+"@sagapo.fr</a>");
}

var imgs=new Array();
imgs[0]="img/defilement/1.jpg";
imgs[1]="img/defilement/2.jpg";
imgs[2]="img/defilement/3.jpg";
imgs[3]="img/defilement/4.jpg";
var cpt=0;
function changeimages()
{
new Effect.Fade("defil_img", { duration: 0.6 });
  setTimeout("document.getElementById(\'illustrations\').src=imgs[cpt]",700);
  setTimeout("new Effect.Appear(\'defil_img\', { duration: 0.8 })",900);
  cpt++;
if(cpt>=imgs.length) cpt=0;
setTimeout("changeimages()",4000);
}