// JavaScript Document

jQuery(function($) {
				
	$('a.external').attr('target','_blank');
	
	ConvertEmails();


});

function ConvertEmails() {
		if($('span.email').size() > 0 ){
			$('span.email').each(function(i) {
				$(this).text($(this).text().replace(' at ', '@').replace(/ dot /gi, '.'));
				$(this).wrap('<a href="mailto:'+$(this).html()+'"></a>');
			});
			//var e = $('span.email');
			//var mail = e.html().replace(' at ', '@').replace(' dot ', '.');
			
			//e.html(mail);
			//e.wrap('<a href="mailto:'+mail+'"></a>');
		}
	}
