jQuery.fn.send = function(options) {
	return this.each(function(){
	    var form = jQuery(this);
		jQuery(this).bind('submit', function() {
			jQuery.ajax(jQuery.extend({
				type     : form.attr('method') || 'post',
				url      : form.attr('action') || window.location.href,
				data     : form.serialize()
			}, options));
			return false;
		});
	});
};