var line=new Array()
line[1]="  Flat screen G5 iMac huge hit with mac users all over the UK from just under £790 (ex VAT)."
line[2]="  iBooks now ALL come with Airport wireless networking built in as standard."
line[3]="  eMac now available from under £470 (ex VAT) - iBooks now available from under £640 (ex VAT)."
line[4]="  The Mac still relatively uneffected by viruses while Windows buckles with an average of 24 new viruses a day!"
line[5]="  Special help for people wanting to get BroadBand offered by MacAssist."
line[6]="  MacAssist continues to smoothly move yet more repro outfits up to OS X."
line[7]="  Panther takes the Mac OS to new realms of reliability and usability with Tiger on the horizon."

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)
	}