var max=0;
function textlist1()
{
max=textlist1.arguments.length; for (i=0; i<max; i++) this[i]=textlist1.arguments[i];
}
tl=new textlist1
(
////"Final footfall figures 9 per cent higher than last year at 31340" 
//"Hobby & Craft launches at Autumn Fair International 2011"
//"International design label Donkey Products joins Autumn Fair for the first time in 2011 "
////"New exhibitor Woodware Craft Collection joins Hobby & Craft sector at Autumn Fair"
//"BTAA to present Best New Collection Award at Autumn Fair"
//"Danish designer and homeware specialist Bloomingville to exhibit at Autumn Fair next month"
"Autumn Fair International 2011 is now closed"
);
var x=0; pos=0;
var l=tl[0].length;
function textticker1()
{
document.getElementById('tickfield').value=tl[x].substring(0,pos)+"_";
if(pos++==l)
{
pos=0;
setTimeout("textticker1()",2500);
x++;
if(x==max)
x=0;
l=tl[x].length;
} else
setTimeout("textticker1()",35);
}


document.write("<INPUT TYPE=\"TEXT\" style=\"border:0px;color:#b40183;font-weight:bold; font-family:Arial, Helvetica, sans-serif; font-size:12px;\" NAME=\"tickfield\" id=\"tickfield\" SIZE=\"110\">"); 

textticker1();
