(function($) {
 
   $.fn.ajaxform = function(settings) {
     var config = {'foo': 'bar'};
 
     if (settings) $.extend(config, settings);
 
     this.each(function() {
       // element-specific code here
		//document.write('<h3>huya</h3>');
     });
 
     return this;
 
   };
 
 })(jQuery);
