$(document).ready(function(){

	// replace email addresses of format <node.email>foo (at) example (dot) com</node>
	// by real email link

	$(".email").each(function(i) {
		var href = $(this).text().replace(/\s*\(at\)\s*/, "@").replace(/\s*\(dot\)\s*/, ".");
		$(this).html('<a href="mailto:' + href + '">' + href + '</a>');
	});

	// set target attribute to external links

	$("a[href^=http://]")
		.not("a[href^=" + WP_OPTION_HOME + "]")
		.attr("target", "_blank")
	;

});

