jQuery.fn.corner = function(options) {
    
        
        var settings = {
          tl: { radius: 10 },
          tr: { radius: 10 },
          bl: false,
          br: false,
          antiAlias: true,
          autoPad: true,
          validTags: ["div"] };
        if ( options && typeof(options) != 'string' )
            jQuery.extend(settings, options);


    return this.each(function() {
        new curvyObject(settings,this).applyCorners();
	});   
            
};