Rot13 = {    map: null,    convert: function(a) {        Rot13.init();        var s = "";        for (i=0; i < a.length; i++) {            var b = a.charAt(i);            s += ((b>='A' && b<='Z') || (b>='a' && b<='z') ? Rot13.map[b] : b);        }        return s;    },    init: function() {        if (Rot13.map != null)            return;                      var map = new Array();        var s   = "abcdefghijklmnopqrstuvwxyz";        for (i=0; i<s.length; i++)            map[s.charAt(i)] = s.charAt((i+13)%26);        for (i=0; i<s.length; i++)            map[s.charAt(i).toUpperCase()] = s.charAt((i+13)%26).toUpperCase();        Rot13.map = map;    },    write: function(a) {        document.write(Rot13.convert(a));    }}$(document).ready(function(){	$('a[href^=mailto:]').each(function(i) {		var xr = this.href.match(/^mailto:([A-Za-z0-9._%+-@]+)$/);		if(!xr) return;		var x = xr[1]; // encoded address		var s = ''; // decoded address		s = Rot13.convert(x);		//xr = s.split(/\|/);  // optionally split real address from url text		this.href = "mailto:" + s;		if ($(this).html() == x) $(this).html(s); //xr[0];	});});
