<!-- begin// global variables
var max=0;
function textlist()
{
        max=textlist.arguments.length;
        for (i=0; i<max; i++)
                this[i]=textlist.arguments[i];
}
tl=new textlist
(
	"*** If you have any questions, requests, or would like to place an order,",
	"please feel free to call us tollfree, send us a fax, or send us an Email.",
	"*** You may also contact us through our online Contact Form. ***",
	"*** Wholesale Distributor *** Minimum order 12 pieces or more, please ***"
//	"*** Please feel free to send us an email, or fill out our Contact Form. ***"
        );
var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
        document.msgform.msgfield.value=tl[x].substring(0,pos)+"";
        if(pos++==l)
        {
                pos=0;
                setTimeout("textticker()",3000);
                x++;
                if(x==max)
                        x=0;
                l=tl[x].length;
        } else
                setTimeout("textticker()",50);
}
// end -->
