var line=new Array()
line[1]="Winners don't quit & quitters don't win"
line[2]="Winners are simply willing to do what losers won't"
line[3]="If you want to do it, you'll find a way - If you don't, you'll find an excuse"
line[4]="If you fail to plan - You plan to fail"

var longestmessage=3
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 (document.all||document.getElementById){
document.write('<form name="bannerform">')
document.write('<input type="text" name="banner" size="'+tscroller_width+'"')
document.write(' style="background-color: transparent; filter: font-family: Arial, Helvetica, sans-serif; text-align: right; font-size: 12px; font-weight: normal; color: #ccc; border: 0px solid #ffffff; padding-right: 8px; width: 450px;" onfocus="blur()">')
document.write('</form>')
}

temp=""
nextchar=-1;
nextline=1;
cursor=""
function animate(){
if (temp==line[nextline] & temp.length==line[nextline].length & nextline!=lines){
nextline++;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",3500)}
else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){
nextline=1;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",3500)}

else{nextstep()}}
function nextstep(){
if (cursor==""){cursor=""}

nextchar++;
temp+=line[nextline].charAt(nextchar);
document.bannerform.banner.value=temp+cursor
setTimeout("animate()",30)}

if (document.all||document.getElementById)
window.onload=animate
//
