<!-- Hide from old browsers
    var titletext=""
    var thetext=""
    var started=false
    var step=0
    var times=1


    function welcometext()
    {
      times--
      if (times==0)
      {
        if (started==false)
        {
          started = true;
          document.title = titletext;
          setTimeout("anim()",1);
        }
        thetext = titletext;
      }
    }


    function showstatustext(txt)
    {
      thetext = txt;
      setTimeout("welcometext()",4000)
      times++
    }


    function anim()
    {
      step++
      if (step==3) {step=1}
      if (step==1) {document.title='KEEP werking'}
      if (step==2) {document.title='keep WERKING'}
      setTimeout("anim()",1000);
    }


if (document.title)
window.onload=onload=welcometext

// -- End Hiding Here -->
