var line=new Array()
//========================================================
line[1]="AT PRESENT, WE ARE NOT ABLE TO ACCEPT BIDS ON CAR AUCTIONS."
line[2]="WE ARE SORRY FOR THE INCONVENIENCE. PLEASE STAY TUNED..."
//========================================================
var ts_fontsize="13px"
var longestmessage=1
for (i=2;i<line.length;i++){
	if (line[i].length>line[longestmessage].length) longestmessage=i
}
var tscroller_width=line[longestmessage].length
lines=line.length-1 

//if IE 4+ or NS6
if (document.all||document.getElementById){
	//cut form
	document.write('<input type="text" name="banner" id="banner" size="100"')
	document.write('  style="background-color:#FFFFFF;: '+document.body.text+'; font-family: verdana; font-size: '+ts_fontsize+'; border: none" onfocus="blur()">')
	// cut form end
}

temp=""
nextchar=-1;
nextline=1;
cursor="\\"

function animate(){

if (temp==line[nextline] & temp.length==line[nextline].length & nextline!=lines){

nextline++;

nextchar=-1;

document.getElementById("banner").value=temp;

temp="";

setTimeout("nextstep()",3000)}

else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){

nextline=1;

nextchar=-1;

document.getElementById("banner").value=temp;

temp="";

setTimeout("nextstep()",1000)}

else{

nextstep()}}



function nextstep(){



if (cursor=="\\"){

cursor="|"}

else if (cursor=="|"){

cursor="/"}

else if (cursor=="/"){

cursor="-"}

else if (cursor=="-"){

cursor="\\"}



nextchar++;

temp+=line[nextline].charAt(nextchar);

document.getElementById("banner").value=temp+cursor

setTimeout("animate()",50)}



//if IE 4+ or NS6

if (document.all||document.getElementById)

window.onload=animate



