(function($){  
    $.fn.rip = function(options) {  
  
      var defaults = { cssClass: 'rippededges', elementType: 'div' };
  
     var options = $.extend(defaults, options);  

  return this.each(function() {  
            $(this).replaceWith("<"+options.elementType+" class='" + options.cssClass + "'> <"+options.elementType+" class='content'> <"+options.elementType+" class='t'> </"+options.elementType+"><"+options.elementType+" class='l'> </"+options.elementType+"><"+options.elementType+" class='r'> </"+options.elementType+"><"+options.elementType+" class='b'> </"+options.elementType+"> <img src='" + $(this).attr("src") + "' alt='" + $(this).attr("alt") + "' title='" + $(this).attr("title") + "' /> </"+options.elementType+"> </"+options.elementType+">");
        });  
    };  
})(jQuery);  

