// ActionScript Document //Arrow title- By Dynamic Drive //Based on status bar script by Jason Rex (wonil4@hotmail.com, http://www.syred.net) //Visit http://www.dynamicdrive.com for full source code //change title text to your own var titletext=" L.F.D.V. " var thetext="" var started=false var step=0 var times=1 function welcometext() { times-- if (times==0) { if (started==false) { started = true; document.title = titletext; setTimeout("anim()",1); } thetext = titletext; } } function showstatustext(txt) { thetext = txt; setTimeout("welcometext()",4000) times++ } function anim() { step++ if (step==19) {step=1} if (step==1) {document.title='L'} if (step==2) {document.title='LF'} if (step==3) {document.title='LFD'} if (step==4) {document.title='LFDV'} if (step==5) {document.title='LFDVL'} if (step==6) {document.title='LFDVLe'} if (step==7) {document.title='LFDVLeu'} if (step==8) {document.title='LFDVLeuz'} if (step==9) {document.title='LFDVLeuze'} if (step==10) {document.title='LFDVLeuze.'} if (step==11) {document.title='LFDVLeuze.b'} if (step==12) {document.title='LFDVLeuze.be'} if (step==13) {document.title='LFDVLeuze.be'} if (step==14) {document.title='LFDVLeuze.be'} if (step==15) {document.title='Les Fous Du Volant'} if (step==16) {document.title='Les Fous Du Volant'} if (step==17) {document.title='Les Fous Du Volant'} if (step==18) {document.title='Les Fous Du Volant'} setTimeout("anim()",200); } if (document.title) window.onload=onload=welcometext