var max=0;
function textlist()
{
	max=textlist.arguments.length;
	for (i=0; i<max; i++)
	this[i]=textlist.arguments[i];
}
tl=new textlist
(
	"Check out our Accessories Section located on lower left sidebar.",
	"NEW Chevrolet & Corvette hoodies.", 
	"Check out our ON SALE items located on the left sidebar under 'Special Interest'",
	"View our 'CHASE CAR' Selection added under Special Interest column"
);
var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
	document.Form1.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()",50);
}
// Add a function call the the page load event
function AddOnload(myfunc)
{
    if(window.addEventListener)
        window.addEventListener('load', myfunc, false);
    else if(window.attachEvent)
        window.attachEvent('onload', myfunc);
}

