var line=new Array()
line[1]="A GLIMPSE OF SOMETHING SHOCKING with THREE'S COMPANY and COLE PORTER"
line[2]=" Saturday 27th January AT 8PM....Bar Opens at 7:30pm. "
<!--line[3]="  "
<!--line[4]="  "
<!--line[5]="  "
<!--line[6]="  Welcome to the Eathorpe Village Website." -->

lines=line.length-1 //--Number of lines

temp=""
nextchar=-1;
nextline=1;
cursor="_"

function animate()
	{
	if (temp==line[nextline] & temp.length==line[nextline].length & nextline!=lines)
		{
		nextline++;
		nextchar=-1;
		document.bannerform.banner.value=temp;
		temp="";
		setTimeout("nextstep()",5000)}
		else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){
		nextline=1;
		nextchar=-1;
		document.bannerform.banner.value=temp;
		temp="";
		setTimeout("nextstep()",5000)}
		else{
		nextstep()
		}
	}

function nextstep()
	{
	nextchar++;
	temp+=line[nextline].charAt(nextchar);
	document.bannerform.banner.value=temp+cursor
	setTimeout("animate()",20)
	}