// Linkify
(function($){
	jQuery.fn.linkify = function(options) {
		self = this;
		$(options).each(function(i) {
			self.html(self.html().replace(new RegExp(options[i].rx, 'ig'), ' <a href="'+ options[i].url +'">$1</a> '));
		});
		return (this);
	}
})(jQuery);
