
//Arrow Head title- By Dynamic Drive
//Based on status bar script by Jason Rex (wonil4@hotmail.com, http://www.syred.net)
//Visit http://www.dynamicdrive.com for full source code
//Modified by Nils for Cafe Society 2005

var titletext="Caf\351 Society >>"
var thetext=""
var started=false
var step=0
var times=1
var t=100
var run = -1

 function delay()
{setTimeout("delay()",150000); }

    function welcometext()
    {
     if (times==1)
      {
        if (started==false)
        {
          started = true;
          document.title = titletext;
          run=window.setTimeout("anim()",1);
        }
        thetext = titletext;
      }
    }

    function anim()
    {
	step++
	if (step==13) {step=1;t=100;}
	if (step==1) {document.title=' '+thetext}
	if (step==2) {document.title='W '+thetext}
	if (step==3) {document.title='We '+thetext}
	if (step==4) {document.title='Wel '+thetext}
	if (step==5) {document.title='Welco '+thetext}
	if (step==6) {document.title='Welcom '+thetext}
	if (step==7) {document.title='Welcome '+thetext}
	if (step==8) {document.title='Welcome  '+thetext}
	if (step==9) {document.title='Welcome t '+thetext}
	if (step==10) {document.title='Welcome to '+thetext}
	if (step==11) {document.title='Welcome to '+thetext}
	if (step==12) {document.title='Welcome to '+thetext}
	if (step==12) {t=7000}
	setTimeout("anim()",t);
    }




