/* ------------------------------------------------------------------
 * ignite
 * Developed By: Russ Wilson -> http://www.lightafuse.ca/
 *
 * Version: 0.1
 * Copyright:	Feel free to redistribute the script/modify it, as
 *				long as you leave my infos at the top.
 *
 * CHANGELOG
 * **************
 * 0.1 - initial release
 *
 *
--------------------------------------------------------------------*/
/*(function(jQuery){
	$.ignite = {};
	$.ignite.highlight = function (str, className) {
		var regex = new RegExp(str, "gi");
	
		return this.each(function () {
			this.innerHTML = this.innerHTML.replace(regex, function(matched) {return "<span class=\"" + className + "\">" + matched + "</span>";});
		});
	};
})(jQuery);*/

(function(jQuery){
	jQuery.fn.highlight = function (str, className) {
		var regex = new RegExp(str, "gi");
	
		return this.each(function () {
			this.innerHTML = this.innerHTML.replace(regex, function(matched) {return "<span class=\"" + className + "\">" + matched + "</span>";});
		});
	};
})(jQuery);
