jQuery.noConflict();

(function(jQuery) {
// It takes a simple transparent image with 4 rounded corners and makes it simple to add them to any image or div.
jQuery.fn.rcorner = function(options) {
  var opts = jQuery.extend({}, jQuery.fn.rcorner.defaults, options);

  return this.each(function(i) {
    var jQuerythis = jQuery(this);

    // Support for the Metadata Plugin.
    var o = jQuery.meta ? jQuery.extend({}, opts, jQuerythis.data()) : opts;
    
    jQuerythis.wrap('<div class="rcorner_wrapper writer'+i+'"></div>');
    jQuery('.writer'+i).append('<div class="top_left"></div><div class="top_right"></div><div class="bottom_left"></div><div class="bottom_right"></div>');
  });

  // private function for debugging
  function debug(jQueryobj) {
    if (window.console && window.console.log) {
      window.console.log(jQueryobj);
    }
  }
};

// default options
jQuery.fn.rcorner.defaults = {
  defaultOne:true,
  defaultTwo:false,
  defaultThree:'yay!'
};

})(jQuery);