﻿// JavaScript Document

var max=0;

function textlist(){
	max=textlist.arguments.length; for (i=0; i<max; i++) this[i]=textlist.arguments[i];
}

tl=new textlist(
"Delivered to you in 3-5 days!",
"Change the way you think about time!",
"A watch is a statement. What does your watch say?",
"Trends are fine but being UNIQUE is better!"
);

var x=0; pos=0;
var l=tl[0].length;

function textticker(){
	document.getElementById('newsbox').innerHTML=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()",45);
}


// Flash detection
var requiredMajorVersion = 8;
var requiredMinorVersion = 0;
var requiredRevision = 0;



