<!--
var i = 0;
var Speed = 100;
TextInput = new Object();
TotalTextInput = 3;
TextInput[0]= "J. Hering Plumbing";
TextInput[1]= "Our Business ... Our Name ... Our Reputation ...";
TextInput[2]= "Free Estimates on New Installations";
TextInput[3]= "Call Us Today! (469) 586 - 8694";
var timer;
var nspace = 25; // number of spaces to add
var msg = '';
var j = 0;
function startBanner() {  // set up the banner for the status bar
  clearTimeout(timer);
for(j=0; j <= TotalTextInput; j++) {
msg = msg + TextInput[j];
for (i=0; i < nspace; i++) {
  msg= msg + ' ';
}
}
scrollMe();
}
function scrollMe() {
 window.status = msg;
 msg = msg.substring(1, msg.length) +  msg.substring(0,1);
 timer = setTimeout('scrollMe()',Speed );
 }
startBanner();
//-->
