$(document).ready(function() {
    $(".button").hover(function() {
        var id = $(this).attr('id');
        $(this).find('.white_back').fadeOut();
        $(this).find('.' + id + '_back').fadeIn();
        $(this).find('.' + id + '_txt').animate({
            right: '-=' + ($(this).find('.' + id + '_txt').width() + 20)
        })
    }, function() {
        var id = $(this).attr('id');
        $(this).find('.white_back').fadeIn();
        $(this).find('.' + id + '_back').fadeOut();
        $(this).find('.' + id + '_txt').css('left', 'auto');
        $(this).find('.' + id + '_txt').animate({
            right: 210
        })
    });
    noSpam();
});

function noSpam() {
    var a = document.getElementsByTagName("a");
    for (var i = a.length - 1; i >= 0; i--) {
        if (a[i].className.search(/\bemail\b/) != -1) {
            var email = a[i].firstChild.data + "@" + a[i].lastChild.data;
            a[i].href = "mailto:" + email;
            a[i].innerHTML = email;
        }
    }
}
