window.status="Restaurant De Vaeren  ©"
var res = 0;
message     = 	  
		" ||  Designed By Bert Van Coninckxloo§" +
		"§"
  TimeOut = 40
  Delay   = 1000
  txt         = "Restaurant De Vaeren  ©  "
  function scrollTxt(pos) {
	  if (res < 40){
    if (message.charAt(pos) != '§') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = TimeOut
    }
    else {
      pauze = Delay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollTxt('"+pos+"')",pauze)
	  }
	  else{
		  window.status="Restaurant De Vaeren  ©"
		  }
		 res++;
  }
scrollTxt(0)
