jQuery(document).ready(function() {
	var keywords = ['Buzzflash.com','BUZZFLASH.COM','BuzzFlash.com'];
	jQuery('.entrybody').each( function() {
		var entrybody = this;
		jQuery.each(keywords,function() {
			var kw = this, rx = new RegExp(kw);
			jQuery(entrybody).html(
				jQuery(entrybody).html().replace(rx,"<a href=\"http://www.buzzflash.com/\" target=\"_blank\">"+kw+"</a>")
			);
		});
	});
});