/*
Copyright (c) 2010 Mediasparx (http://www.mediasparx.com)
Notes: Redirect

*/

$(document).ready(function(){
    function strrev(str) {
        return str.split("").reverse().join("");
    }
    $('.redirect').each(function(index) {
        $(this).replaceWith('<a href="mailto:'+strrev($(this).html())+'">'+strrev($(this).html())+'</a>');
    });
});
