

var dom = 'kynext.com' ;
var pec = 'pec.kynext.com' ;

$(document).ready(
	function() {
		
		var jDom = $('span.email-dom');
		jDom.each( function() {
				var account = $(this).html();
				var email = account + '@' + dom ;
				$(this).replaceWith('<a href="mailto:'+email+'">'+email+'</a>');
			}
		); // END jDom.each
		
		var jPec = $('span.email-pec');
		jPec.each( function() {
				var account = $(this).html();
				var email = account + '@' + pec ;
				$(this).replaceWith('<a href="mailto:'+email+'">'+email+'</a>')
			}
		); // END jPec.each
	}
);