// ce script est mis a jour par le menu d'administration du site
// ne pas bousculer la structure.

txt=new Array;
txt[0]="Bienvenue sur le site de la MPT"
txt[1]="Inscription annuelle : 25 euros donnant droit à toutes les activités"

index = 0; //  function starting point//

function banner() {
var head1=document.getElementById("head1");
head1.firstChild.nodeValue = txt[index];
index++;
if (index >= txt.length){ index=0; }
setTimeout("banner()",3000); //Time for each text to run milliseconds//
return;
}

