﻿$(document).ready(function() {
	var domain = '\u0040\u0073\u0061\u006e\u0063\u0074\u0069\u006f\u006e\u002e\u0063\u006f\u006d';
	var arrValues = ['Sales', 'Support', 'Training', 'Video', 'WebDev'];
	var user = 'seichery';
	
	$.each(
		arrValues,
		function(intIndex, objValue) {
			$('span:contains(\'' + objValue + '\')').replaceWith('<a class=\'type email\' href=\'mailto:' + objValue + domain + '\'>' + objValue + '</a>');
		}
	);	
});
