
/*                                             MAED JQUERY
__________________________________________________________
*/	

$(document).ready(function(){

	$('a.email').each(function(){
		e = this.rel.replace('/','@').replace('site','maedmedia.com');
		this.href = 'mailto:' + e;
		// $(this).text(e);
	});

});