// ==UserScript==
// @name           douban_namel_sel
// @namespace      http://kindy.googlecode.com/douban_namel_sel
// @description    just
// @include        http://www.douban.com/online/*/invite
// ==/UserScript==

(function($){

var r = $('#in_tablem'),
	t = r.find('span.wrap h3'),
	ipts = r.find('>div.namel input');

t.html(t.html()+' 全选');
$('<input type="checkbox"/>').click(function(el){ipts.attr('checked',this.checked)}).appendTo(t);

})(jQuery);