<!--
  var text = new Array(
   "Our TSE paper is about reverse engineering a Grammar",
   "CpSc 801 is about Unix/Linux and Programming for DPA/MFA",
   "CpSc 416/616 is Video Game Development w/ C++ & Design Patterns",
   "Veritas Vos Liberabit",
   "CpSc 428 is about Programming Languages"
  );
  var count = text.length;
  var i = 0;
  function scroll() {
    document.rotate.ask.value = text[i++];
    if ( i == text.length ) i = 0;
    setTimeout("scroll()", 3500);
  }
// -->
