$(function(){

	// Protect e-mail from spam. ex: <a href="mailto:" title="gmail.com">sean</a>
	$("a[@href='mailto:']").each(function(){
		var str = $(this).text()+"@"+$(this).attr("title");
		$(this).attr("title","");
		$(this).attr("href","mailto:"+str).html(str);
	});



});

