//Impression du slogan
  function typeit(){
    txtSlogan.innerHTML=txtSlogan.innerHTML+mytext.charAt(it);
    if (it<mytext.length-1){
      it++;
      setTimeout("typeit()",50);
    }
    else return;
  }
//Impression texte barre de status
  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos);
      window.status = txt;
      pauze  = scrollSpeed;
    } else {
      pauze = lineDelay;
      txt   = "";
      if (pos == message.length-1) pos = -1;
    }
    pos++;
    setTimeout("scrollText('"+pos+"')",pauze);
  }

//Initialisation slogan
  var it=0;
  var txtSlogan=document.getElementById("slogan");
  mytext=txtSlogan.innerHTML;
  txtSlogan.innerHTML="";
  txtSlogan.style.visibility="visible"
  typeit()

//Initialisation barre de status
  var message = "Bienvenue chez Privilège coiffure ...^" +
    "Welcome to Privilège coiffure ...^" +
    "Tel : 01 48 78 02 69^" +
    "Fax : 01 42 81 91 27^" +
    "e-mail : contact@privilegecoiffure.com^" +
    "^";
  var scrollSpeed = 80;
  var lineDelay   = 2500;
  var txt         = "";
  scrollText(0);
