// 	Cloaks Emails.  Insert email in the following format:
//	<a href="#" rel="me/example.com" class="email"></a>
// 	Source: http://viebrock.ca/code/51/email-protection-with-jquery


$(document).ready(function(){
	$('span.email').each(function(){
		e = this.title.replace('/','@');
		this.href = e;
		$(this).text(e);
	});
});




$(document).ready(function(){
	$('input.protect').each(function(){
		e = this.title.replace('/','@');
		this.href = e;
		$(this).text(e);
	});
});
