$(function() {
  $('.email').nospam({
    replaceText: true,    // BOOLEAN, optional default false. If set to true, replaces matched elements' text with the e-mail address
    filterLevel: 'normal' // STRING, optional accepts 'low' or 'normal', default 'normal'.
                          // low: email//domain/tld
                          // normal: dlt/niamod//liame (email//domain/tld reversed)

  });
  $('.email').each(function() {
    $(this).attr('href', 'mailto:'+$(this).text());
  });
});
