Classement 2012/2013

1. OYONNAX 111
2. BRIVE 94
3. PAU 93
4. LA ROCHELLE 87
5. AURILLAC 82
6. TARBES 80
7. CARCASSONNE 74
8. LYON 72
9. NARBONNE 69
10. COLOMIERS 66
11. ALBI 59
12. BÉZIERS 51
13. AUCH 50
14. DAX 49
15. PAYS D'AIX 45
16. MASSY 37
classement au 08 mai 2013

Suivez-nous sur Twitter !

      jQuery(function($){
        var options = {
          username: "ColomiersRugby",
          page: 1,
          avatar_size: 32,
          count: 4,
          fetch: 5, // 1 + count
          loading_text: "loading ..."
        };

        var widget = $("#paging .widget"),
          next = $("#paging .next"),
          prev = $("#paging .prev");

        var enable = function(el, yes) {
          yes ? $(el).removeAttr('disabled') :
                $(el).attr('disabled', true);
        };

        var stepClick = function(incr) {
          return function() {
            options.page = options.page + incr;
            enable(this, false);
            widget.tweet(options);
          };
        };

        next.bind("checkstate", function() {
          enable(this, widget.find("li").length == options.count)
        }).click(stepClick(1));

        prev.bind("checkstate", function() {
          enable(this, options.page > 1)
        }).click(stepClick(-1));

        widget.tweet(options).bind("loaded", function() { next.add(prev).trigger("checkstate"); });
      });