/* Inserts email address where needed */
$(function () {
	var elems = $('.insert-email');
	if (elems.length <= 0) {
		return;
	}
	elems.each(function () {
		var usr = $('.u', this).text(),
			dom = $('.d', this).text(),
			tld = $('.t', this).text(),
			email_address = usr + '@' + dom + '.' + tld;
		$(this).html('<a href="mailto:' + email_address + '?subject=Contact from symonproject.com">' + email_address + '</a>');
	});
});
