$(document).ready(function() {
    $('a.grey').each(function(i) {
        var text = $(this).text();
        var address = text.replace(" snabela ", "@");
        $(this).attr('href', 'mailto:' + address);
            $(this).text(address);
        });
    });
	
	
	

