(function($) {
   $.fn.wordWrap = function(){
        return this.each(function(){
            var $this = $(this),
                context = $this.html();
                $this.html(context.replace(/,/g, ", "));
        });
   };
})(jQuery);

