$(document).ready(function () {
	$("span.fuck_spam").each(function (index, el) {
		var email = el.innerHTML.replace(' - at - ', '@').replace(/ - dot - /g, '.');
		$(el).html('<a href="mailto:' + email + '">' + email + '</a>');
	});
	$('a').each(function (index, el) {
		if (el.href === document.location.href) {
			$(el).addClass('active');
		}
	});
	$('body.smart a.smart, body.mystery a.mystery, body.smvalue a.smvalue').addClass('active');
});
