$(document).ready(function(){

    /* obfu email addr */
    $('a.email').each(function(){
			e = this.rel.replace('/','@');
			this.href = 'mailto:' + e;
			$(this).html(e);
		});
});