var max=0;
function textlist()
{
max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];
}
tl=new textlist
(
"' We got associated with Incture for our Loyalty project. Kunal Mehta,(Program Manager, Store Systems)Trent Ltd '","' Incture listed as an 'Emerging Company' by NASSCOM '","' Incture showcases Customer Loyalty Management Solutions at Loyalty Summit, Mumbai. ' ","' Incture showcases innovative mobile solution for enterprises at a road show in Bangalore. '");
var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
document.getElementById('tickfield').innerHTML = tl[x].substring(0,pos);
//document.tickform.tickfield.value=tl[x].substring(0,pos)+"_";
if(pos++==l) { pos=0; setTimeout("textticker()",2000); x++;
if(x==max) x=0; l=tl[x].length; } else
setTimeout("textticker()",100);
}
