// ==UserScript==
// @name           douban_namel_sel
// @namespace      http://kindy.googlecode.com/douban_namel_sel
// @description    just
// @include        http://www.douban.com/online/*/invite
// ==/UserScript==

var jQuery=(typeof unsafeWindow=='object' ? unsafeWindow : window).jQuery;

if(jQuery){
  jQuery(function(r,t,ipts){
    r = jQuery('#in_tablem');
    t = r.find('span.wrap:first h3');
    ipts = r.find('>div.namel input');

    t.html(t.html()+' 全选');
    jQuery('<input type="checkbox"/>').click(function(el){ipts.attr('checked',this.checked)}).appendTo(t);
  });
}