<!--
  var text = new Array(
   "CpSc 870 is about OO Development using C++, SDL, Valgrind, Design Patterns and XML",
   "CpSc 481/681 provides a foundation in computer science for non computer scientists",
   "Our Future Play paper describes video games to teach computer programming",
   "To be nobody but yourself in a world which is doing its best, night and day, to make you like everybody else,",
   "means to fight the hardest battle which a human being can fight; and never stop fighting. ee cummings"
  );
  var count = text.length;
  var i = 0;
  function scroll() {
    document.rotate.ask.value = text[i++];
    if ( i == text.length ) i = 0;
    setTimeout("scroll()", 3500);
  }
// -->

