
bullet = "We undertake web projects.";
bullet += "Training materials for web technologies.";
bullet += "Contact us @ cyberbahn@gmail.com  ";
spacer = "...          ...";
pos = 0;
function ScrollMessage() {
   var newtext = bullet.substring(pos, bullet.length) +
      spacer + bullet.substring(0, pos);
   var td = document.getElementById("scroll");
   td.firstChild.nodeValue = newtext;
   pos++;
   if (pos > bullet.length) pos = 0;
   window.setTimeout("ScrollMessage()",300);
}



