// $Id$

// Global killswitch
if (Drupal.jsEnabled) {
  $(document).ready(function(){
      var commitSaved = function (data) {
        var result = Drupal.parseJson(data);
        $('#T247pwAll-' + result['time']).css("background-color","#ff9").fadeIn('slow').html(result['commitments'] + result['commit']);
      }

    $('a.T247pwLink').click(function(){
      $.get(this.href, null, commitSaved);
      return false;
    });
  });
}
