var scroll1 = new scrollObject("scr1", 150, 150, "up", 5000, 1.15); 
scroll1.block[0] = "<font class=text><i>Dr. Phildo</i>, &quot;WWJD? Hed play Cyber-Wars!&quot;</font>";
scroll1.block[1] = "<font class=text><i>Skip</i>, &quot;When life gives me lemons I play CW with a little lemonaide.&quot;</font>";
scroll1.block[2] = "<font class=text><i>FakeMagic</i>, &quot;A game not to be messed with, Here you either are strong or weak, its a matter of choice.&quot;</font>";
scroll1.block[3] = "<font class=text><i>Dr. Cox</i>, &quot;This is so much better than myspace.&quot;</font>";
scroll1.block[4] = "<font class=text><i>{BaD} Rieal82</i>, &quot;Playing cyber-wars can get you fired just like it did to me, but Im still here!&quot;</font>";
scroll1.block[5] = "<font class=text><i>Dr Snifty</i>, &quot;There are 10 kinds of people in the world....Those who play Cyber-Wars and those who dont.&quot;</font>";
scroll1.block[6] = "<font class=text><i>PaPPy</i>, &quot;All the cool kids are doing it!&quot;</font>";
scroll1.block[7] = "<font class=text><i>HellTrooper [UK]</i>, &quot;Cyber-Wars not just an addiction, nor a game, BUT a Community&quot;</font>";
scroll1.block[8] = "<font class=text><i>|RED|Hades-O</i>, &quot;When my computer was garbage I found CW to play. Now its nice, games come and go, but only CW is here to stay. 425+ days!&quot;</font>";
scroll1.block[9] = "<font class=text><i>DeeK</i>, &quot;I never turned down sex to play this game but I admit that I have thought about it!&quot;</font>";
scroll1.block[10] = "<font class=text><i>|MOD| Deveous1</i>, &quot;Just like real life...IQ matters and your skills dont train themselves.&quot;</font>";
scroll1.block[11] = "<font class=text><i>{DD}Absolut1on</i>, &quot;I dont eat, drink or sleep Cyber-Wars. In fact im too busy playing to eat, drink or sleep at all!&quot;</font>";
scroll1.block[12] = "<font class=text><i>Dr Snifty</i>, &quot;Cyber-Wars, its not just for dinner.&quot;</font>";
scroll1.block[13] = "<font class=text><i>HellTrooper [UK]</i>, &quot;Cyber-Wars, I even play on my mobile phone&quot;</font>";
scroll1.block[14] = "<font class=text><i>Marky</i>, &quot;And Patrick said to Apache, let their be Cyber-Wars&quot;</font>";
scroll1.block[15] = "<font class=text><i>Relian</i>, &quot;Thanks to Cyber-Wars, my ass is now permanently grafted to my computer chair. Good thing I modified it and added a toilet ;)&quot;</font>";
scroll1.block[16] = "<font class=text><i>A51 - SideWinder</i>, &quot;Life? What the hell is that? Ive only heard of Cyber-Wars!!&quot;</font>";
scroll1.block[17] = "<font class=text><i>Kou.BAD.</i>, &quot;The voice beside me whispers &quot;cyber-wars...cyber-wars...&quot;. It belongs to the friend whom I spread my addiction to.&quot;</font>";
scroll1.block[18] = "<font class=text><i>The Solution</i>, &quot;It's like crack, leaves ya scratchin for more&quot;</font>";
scroll1.block[19] = "<font class=text><i>Frank-N-Furter</i>, &quot;CW: Unlike the flu, this is one bug you want to catch.&quot;</font>";
scroll1.block[20] = "<font class=text><i>Bite-Me</i>, &quot;Cyber-wars ROCKS!.. Im here 20 hours a day.. it would be more.. but i have to minus eating and potty times.&quot;</font>";
scroll1.block[21] = "<font class=text><i>{CPU}Hercules</i>, &quot;Cyber-Wars, an addiction that never ends..&quot;</font>";
scroll1.block[22] = "<font class=text><i>BiteMe</i>, &quot;Looking for a great game to play ? Cyber-Wars is the place for u! good community -addictive- fun .. anything else is just a game&quot;</font>";
scroll1.block[23] = "<font class=text><i>PaPPy</i>, &quot;This game is easy to play but hard to walk away from.&quot;</font>";
scroll1.block[24] = "<font class=text><i>Tez</i>, &quot;Don't leave home without it!&quot;</font>";



window.onload = function() {
  scroll1.scroll();
}

function scrollObject(main, width, height, direct, pause, speed) {
  var self = this;
  this.main = main;
  this.width = width;
  this.height = height;
  this.direct = direct;
  this.pause = pause;
  this.speed = Math.max(1.001, Math.min((direct == "up" || direct == "down") ? height : width, speed));
  this.block = new Array();
  this.blockprev = this.offset = 0;
  this.blockcurr = 1;
  this.mouse = false;
  this.scroll = function() {
    if (!document.getElementById) return false;
    this.main = document.getElementById(this.main);
    while (this.main.firstChild) this.main.removeChild(this.main.firstChild);
    this.main.style.overflow = "hidden";
    this.main.style.position = "relative";
    this.main.style.width = this.width + "px";
    this.main.style.height = this.height + "px";
    for (var x = 0; x < this.block.length; x++) {
      var table = document.createElement('table');
          table.cellPadding = table.cellSpacing = table.border = "0";
          table.style.position = "absolute";
          table.style.left = table.style.top = "0px";
          table.style.width = this.width + "px";
          table.style.height = this.height + "px";
          table.style.overflow = table.style.visibility = "hidden";
        var tbody = document.createElement('tbody');
          var tr = document.createElement('tr');
            var td = document.createElement('td');
                td.innerHTML = this.block[x];
              tr.appendChild(td);
            tbody.appendChild(tr);
          table.appendChild(tbody);
      this.main.appendChild(this.block[x] = table);
    }
    if (this.block.length > 1) {
      this.main.onmouseover = function() { self.mouse = true; }
      this.main.onmouseout = function() { self.mouse = false; }
      setInterval(function() {
        if (!self.offset && self.scrollLoop()) self.block[self.blockcurr].style.visibility = "visible";
      }, this.pause);
    } this.block[this.blockprev].style.visibility = "visible";
  }
  this.scrollLoop = function() {
    if (!this.offset) {
      if (this.mouse) return false;
      this.offset = (this.direct == "up" || this.direct == "down") ? this.height : this.width;
    } else this.offset = Math.floor(this.offset / this.speed);
    if (this.direct == "up" || this.direct == "down") {
      this.block[this.blockcurr].style.top = ((this.direct == "up") ? this.offset : -this.offset) + "px";
      this.block[this.blockprev].style.top = ((this.direct == "up") ? this.offset - this.height : this.height - this.offset) + "px";
    } else {
      this.block[this.blockcurr].style.left = ((this.direct == "left") ? this.offset : -this.offset) + "px";
      this.block[this.blockprev].style.left = ((this.direct == "left") ? this.offset - this.width : this.width - this.offset) + "px";
    }
    if (!this.offset) {
      this.block[this.blockprev].style.visibility = "hidden";
      this.blockprev = this.blockcurr;
      if (++this.blockcurr >= this.block.length) this.blockcurr = 0;
    } else setTimeout(function() { self.scrollLoop(); }, 30);
    return true;
  }
}