
  var message = "We are open 6 days a week for your convenience.^" +
				"Our services are Simple, Secure, Fast & Efficient with Competitive Rates.^" +
                "We are open for business when you want to do business.^" +
				" .......... ^" +
                " .......... ^" +
				"LibertyChanger.Com :: An expert on the exchange of e-currencies.^";
  var scrollSpeed = 20;
  var lineDelay   = 1800;
  var txt         = "";

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos);
      status = txt;
      pauze  = scrollSpeed;
    }
    else {
      pauze = lineDelay;
      txt   = "";
      if (pos == message.length-1) pos = -1;
    }
    pos++;
    setTimeout("scrollText('"+pos+"')",pauze);
  }
  
scrollText(0);

