(function($){
	$.fn.myplugin = function(){
		return this.each(function(){
			var that = this;
			$(that).draggable().resizable();
		});
	};
	
	$(document).ready(function(){
		$(".box").myplugin();
	});
})(jQuery);

