/**
 * @author hsc
 */
jq(document).ready(function() {
	
	// reconstruct the email
    jq('a.email').each(function(){
        email = this.rel.replace(/X#X/g,'.');
        email = email.replace('|','@');
        email = email.split('').reverse().join('');
        this.href = 'mailto:' + email;
        jq(this).text(email);
    });
});


