(function($){
	$.fn.PAF_InlineEditor = function(options) {
		var defaults = {
			connectWith: null,
			submitButton:true,
			additionalInputInclude: null,
			valueChanged: null,
			submitButtonPressed: null,
			getFocus:null,
			lostFocus: null
		};

		var opts = $.extend(defaults, options);
		
		return this.each(function(){
			var $this = $(this);
			$('li', $this).html('test');
		});
	};
})(jQuery);