// JavaScript Document
 var x = 0
  var y = 0
  var z = 140
  var delay = 70
  var text = "         OUR STUDENT CREED... "
+"I will develop myself in a positive manner  "
+"Avoid anything that could reduce my mental growth or physical health "
+"I will develop self discipline in order to bring out the best in myself and others "

+"I will use common sense before self defense and never be abusive or offensive "

+"This is a Black Belt School "

+"I am dedicated "

+"I am motivated "


+"I am on a quest to be my best...Aasah!!!! "


  while (y ++ < z) {
  text = " " + text
  }

  function scroller() {
  window.status = text.substring(x++, text.length);
  if (x == text.length)  {
  x = 0;
  }
  setTimeout("scroller()", delay);
  }

  scroller();
