


$(document).ready(function() {

		$(".mailto").each(function(index) {
			 // simple mailto obfuscator. I'll get over it if you figure out my email :)
			 $(this).attr("href", "mailto:"+decode64($(this).attr("href")));
		});		 
		 

});
 
 
