jQuery(document).ready(function($) { 
 
 //Email Protection ***** Script via joshbrown@forrst
	$('.email').each(function(i) {

     var e = $(this).html();
     e = e.replace(" [at] ", "@");
     e = e.replace(" [dot] ", ".");

     $(this).html(e).replaceWith("<a href=\"mailto:" + $(this).text() + "\">" + $(this).text() + "</a>");

 });

});

