$(document).ready(function(){
    $('.email').click(function(){
        $.post('/getEmail.php',function(data){
            if(data){
                window.location = data.href;
            }else{
                alert('failed to recieve application-friendly email link');
            }
        },'json');
    })
})

