<!--

var text=new Array(""," |","");
var c=new Array();
   c[0]="yellow";
	 c[1]="lightyellow";
	 c[2]="gray";
	 c[3]="white";
var i=0,x=0,a=0,w=50,b=800;
var message="Eurobodalla, the Land of Many Waters, the Nature Coast!";

function follow()
{
  
	
	if(i<=message.length-1)
	{
		document.getElementById('tid'+0+'s').value=message.substring(i,0)+text[x];
		 if(x==text.length-1)
		  {
			  x=0;
			}
			 if(i==message.length-1)
				{
				  document.getElementById('tid'+0+'s').value=message;
					x=0;
				}
		x+=1;
		i+=1;
	}
	else
	{
	 if (a<=c.length-1)
	  {
		  w=250;
	    document.getElementById('tid'+0+'s').style.color=c[a];
		  a++;
		}
		else
		{
		  document.getElementById('tid'+0+'s').style.top=100;
			if(b<=200)
			{
			  document.getElementById('tid'+0+'s').style.top=b;
				b++;
				w=1;
			}
			else
			{
			 for(var temp=255;temp>=0;temp--)
			  document.getElementById('tid0s').style.color="rgb("+temp+","+temp+","+temp+")";
			}
		}
	}
	setTimeout("follow();",w);
}
//-->