
<!--- Begin
var CurrentMsg = 'test';                    
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('field').innerHTML = CurrentMsg;
clearTimeout(timer);                           
timer = setTimeout("idleMsg()",4000);        
}                           
function MakeArray(n) {                           
this.length=n;                           
for(var i = 1; i<= n; i++) {                                   
this[i] = "";                
}                           
return(this);        
}               
var index = 1;           
var notice_num = 6;                   
var notices = new MakeArray(notice_num);        
notices[1] = '"Quick, Affordable Facebook Fan Pages - no coding required!" (Via@ <a href="" style="font-family:Arial, Helvetica, sans-serif; font-size:13px; color:#c9e018; line-height:47px; text-align:center; font-style:italic; text-decoration:none;"> mysocialbravo</a>)<a href="" style="font-family:Arial, Helvetica, sans-serif; font-size:13px; color:#c9e018; line-height:47px; text-align:center; font-style:italic; text-decoration:none;"> http://tinyurl.com/ykb37uv</a>';        
notices[2] = "Facebook Fan Pages & Apps Social Bravo!";
notices[3] = "Quick & Affordable ways to create Facebook Fan Pages";        
notices[4] = "Socialize & Engage your Fans using Facebook Apps";
notices[5] = "Manage everything from the FMS PlatformTM"; 
notices[6] = "Track & Measure your efforts using Facebook Reports";             
var timer = setTimeout('idleMsg()',1000);                   
function nochange() {                           
document.getElementById('field').innerHTML = CurrentMsg;        
}                   
function idleMsg() {                           
update(notices[index++]);                           
if(index>notice_num) { 
index=1; 
   }  
}
// End -->     
