jQuery Plugin을 만들기 위한 기본 template
--------------------------------------------------------------------
(function($) {
$.fn.myJQueryExtFunction = function(o) {
o = $.extend({
param1:'1'
,param2:'2'
}, o || {});
return this.each(function(index) {
});
};
})(jQuery);