<!--              
//Secify scroller contents               
var line=new Array()               
line[1]="Don't miss the Cloud Dance Theatre performance"               
line[2]="Coming to Brandeis March 17, 2004!"
line[3]="Check out the main page for more detail."
line[4]="Don't miss our Krispy Kreme donuts sale in upper Usdan"
line[5]="Only $5 per dozen! Place your order now!"
line[6]="And then pick up your donuts on 3/11 (Thursday)"
line[7]=" [end of news] replay starts in 5 seconds..."     
//Specify font size for scoller               
              
               
//--Don't edit below this line               
               
var longestmessage=1               
for (i=1;i<line.length;i++){               
if (line[i].length>line[longestmessage].length)               
longestmessage=i               
}               
               
//Auto set scroller width               
var tscroller_width=line[longestmessage].length*1             
               
lines=line.length-1 //--Number of lines               
               
temp=""               
nextchar=-1;               
nextline=1;               
cursor="_"               
function animate(){               
if (temp==line[nextline] & temp.length==line[nextline].length & nextline!=lines){               
nextline++;               
nextchar=-1;               
document.newsfield.news.value=temp;               
temp="";               
setTimeout("nextstep()",5000)}               
else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){               
nextline=1;               
nextchar=-1;               
document.newsfield.news.value=temp;               
temp="";               
setTimeout("nextstep()",5000)}               
else{               
nextstep()}}               
               
function nextstep(){               
               
if (cursor=="_"){               
cursor=" "}               
else if (cursor==" "){               
cursor="_"}               
               
               
nextchar++;               
temp+=line[nextline].charAt(nextchar);               
document.newsfield.news.value=temp+cursor            
setTimeout("animate()",40)}               
               
//if IE 4+ or NS6               
if (document.all||document.getElementById)               
window.onload=animate               
// -->               
