pos=0;
texte=' dessin - peinture - carnets créatifs - anniv. enfants -';

function titredefilant() {
titre= texte.substring(pos, texte.length) + texte.substring(0, pos);pos++
document.forms[0].defile.value=titre;
if(pos>texte.length) pos=0;
window.setTimeout('titredefilant();', 500);
}

