/*  Email obfuscator by stylephreak: http://codesnippets.joyent.com/user/stylephreak#post1735 
-------------------------------------------------------------------------------------------*/
jQuery.fn.emailProt = function(e) {
	$(this).each(function(){
		e = this.rel.replace('|','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
};