$(document).ready(function(){
    if( $('.email').length ){
        link = $('<a></a>')
            .addClass('reverse')
            .attr('href', 'mailto:' + $('.email').html().split("").reverse().join("") )
            .html( $('.email').html() );
        $('.email').replaceWith( link );
    }
})
