(function($){
	$.fn.test = function(options) {
	   
		var defaults = {
			
		};
		
		var options = $.extend(defaults, options);
	   
		return this.each(function() {
			obj = $(this);
			$(this).addClass("test");
		});
	};
})(jQuery);
