


// mail-maskering  
jQuery.fn.mailme = function() {
    var at = / at /;
    var dot = / dot /g;
    this.each( function() {
        var addr = jQuery(this).text().replace(at,"@").replace(dot,".");
        var title = jQuery(this).attr('title')
        $(this)
            .after('<a class="mail" href="mailto:'+addr+'" title="'+title+'">'+ addr +'</a>')
            .remove();
    });
};


// mail-maskering  
jQuery.fn.mailme2 = function() {
    var at = / at /;
    var dot = / dot /g;
    this.each( function() {
        var addr = jQuery(this).text().replace(at,"@").replace(dot,".");
        var title = jQuery(this).attr('title')
        $(this)
            .after('<a class="mail" href="mailto:'+addr+'" title="'+title+'"><img src="/graphics/layout/email.gif" border="0"/></a>')
            .remove();
    });
};



$(document).ready(function(){
$('span.mailme').mailme();
  });
  
  $(document).ready(function(){
$('span.mailme2').mailme2();
  });
 
