      var TickerCurPos = -1;
      var TickerCurLine = -1;
      var lines = new Array(
          "'Getting up at six and racing up a col from the gun is a bitch.'  - Jacky Durand",
          "'Think of bicycles as rideable art that can just about save the world.'  - Grant Peterson",
          "'Enough with this sunday stroll...let's hurt a little bit.'  - American Flyers",
          "'When I see an adult on a bicycle, I do not despair or the future of the human race.'  - H.G. Wells",
          "'The best rides are the ones where you bite off much more than you can chew - and live through it.'  - Doug Bradbury",
          "'Nothing compares to the simple pleasure of a bike ride.'  - John F. Kennedy",
          "'What was supposed to be a summer of fun on the bike turned into a year, then two years. It certainly wasn't a calculated plan to have a career as a cyclist.'  - Derek Bouchard-Hall",
          "'Ride lots.'  - Eddy Merckx",
          "'A woman without a man is like a fish without a bicycle.'  - Gloria Steinem",
          "'Cycling is like a church - many attend, but few understand.'  - Jim Burlant",
          "'You not bike rider, you nobody.'  - Eddie B.",
          "'There are no races. Only lotteries.'  - Jacques Anquetil",
          "'I won! I won! I don't have to go to school anymore.'  - Eddy Merckx, after winning his first bike race",
          "'It was eleven more than neccessary.'  - Jacques Anquetil, after winning a race by tweleve seconds",
          "'To prepare for a race there is nothing better than a good phesant, some champagne and a woman.'  - Jacques Anquetil",
          "'Dopers have ruined this great sport, because of that a new Eddy Merckx may emerge but people will only think he is great because of the drugs and that is a shame'  - Robert MacNeil",
          "'The Ventoux is a god of Evil, to which sacrifices must be made. It never forgives weakness and extracts an unfair tribute of suffering.'  - Roland Barthes"
        );
      var ticker;

      function startTicker( )
      {
        if( ticker = document.getElementById( 'ticker' ))
        {
          TickerCurPos = 1;
          TickerCurLine = Math.round( Math.random( ) * lines.length - 0.5 );
          updateTicker( );
        }
      }

      function updateTicker( )
      {
        if( TickerCurPos == lines[TickerCurLine].length + 1 )
        {
          newLine = Math.round( Math.random( ) * lines.length - 0.5 );
          while( newLine == TickerCurLine )
            newLine = Math.round( Math.random( ) * lines.length - 0.5 );

          TickerCurLine = newLine;
          TickerCurPos = 1;
        }

        newInner = lines[TickerCurLine].substr( 0, TickerCurPos++ );

        newnewInner = newInner;
        do
        {
          newnewInner = newInner.replace( / /, '&nbsp;' );
          newInner = newnewInner;
        } while( newnewInner != newInner );

        do
        {
           newnewInner = newInner.replace( /-/, '&mdash;' );
          newInner = newnewInner;
        } while( newnewInner != newInner );

        if( TickerCurPos == lines[TickerCurLine].length + 1 )
          setTimeout( 'updateTicker( )', 3000 );
        else
        {
          setTimeout( 'updateTicker( )', 50 );
          newInner += ( TickerCurPos % 2 == 1 ? ' <span>_</span>' : '-' );
        }

        ticker.innerHTML = newInner;
      }

