
//Secify scroller contents
var line=new Array()
line[1]="Website launch: 8th December 2003."
line[2]="Venue: Portcullis House"
line[3]="Speakers... Archbishop of Canterbury"
line[4]="PPP is a collaboration between...."
line[5]="The Family Matters Institute..."
line[6]="Credit Action..."
line[7]="Consumer Credit Counselling Service..."

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()",1000)}
		else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){
		nextline=1;
		nextchar=-1;
		document.bannerform.banner.value=temp;
		temp="";
		setTimeout("nextstep()",1000)}
		else{
		nextstep()
		}
	}

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

