       var i = 0, speed = 1, do_scroll = 1;
       function tweet_scroll() {
        if (do_scroll == 1) {
         i = i + speed;
         document.getElementById("tweets").scrollTop = i;
         if (i > document.getElementById("tweets").scrollHeight - 310)
          i = 0;
        }
        t1 = setTimeout("tweet_scroll()", 100);
       }
       function tweet_scroll_start() {
        do_scroll = 1;
       }
       function tweet_scroll_stop() {
        do_scroll = 0;
       }
       setTimeout("tweet_scroll()", 500);
