
//<!-- Begin
var CurrentMsg = 'Boston, MA';
function update(msg) {
var pad_str="";                           
n = msg.length;
if(n<72) {
pad = (73-n)/2;
for(var i=0; i<pad; i++) {
pad_str+=" ";                        
   }                        
}                          
CurrentMsg = pad_str + msg;                           
document.getElementById("ticker").innerHTML = CurrentMsg;
clearTimeout(timer);                           
timer = setTimeout("idleMsg()",2500);        
}
function MakeArray(n) {                           
this.length=n;                           
for(var i = 1; i<= n; i++) {                                   
this[i] = "";                
}                           
return(this);        
}               
var index = 1;           
var notice_num = 17;                   
var notices = new MakeArray(notice_num);        
notices[1] = "Boston, MA";
notices[2] = "San Francisco, CA";
notices[3] = "Houston, TX";        
notices[4] = "Phoenix, AZ";
notices[5] = "Salt Lake City, UT";
notices[6] = "Sioux Falls, SD";
notices[7] = "New Orleans, LA";
notices[8] = "Atlanta, GA";
notices[9] = "Seattle, WA";
notices[10] = "Boca Raton, FL";
notices[11] = "El Paso, TX";
notices[12] = "Detroit, MI";
notices[13] = "Richmond, VA";
notices[14] = "Vernon Hills, IL";
notices[15] = "Cumberland, MD";
notices[16] = "Boulder, CO";
notices[17] = "Vancouver, BC";

                    
var timer = setTimeout('idleMsg()',1500);                   
function nochange() {
document.getElementById("ticker").innerHTML = CurrentMsg;        
}                   
function idleMsg() {                           
update(notices[index++]);                           
if(index>notice_num) { 
index=1; 
   }  
}
// End -->                  

