function sendCode() {
    if( $('#code-form').valid() ) {
        $.ajax({
            url: "/ajax.php",
            global: false,
            type: "POST",
            data: ({action: 'code' }),
            dataType: "html",
            success: function( data ){
                $('#code-content').html('<p>Invite code is incorrect.</p>');
            }
        });
    }
}

function sendInvite() {
    if( $('#invite-form').valid() ) {
        $.ajax({
            url: "/ajax.php",
            global: false,
            type: "POST",
            data: ({action: 'invite', name: $('#invite-name').val(), email: $('#invite-email').val() }),
            dataType: "html",
            success: function( data ){
                $('#invite-content').html('<p>Thanks for applying to join the beta. We\'ll get you in as soon as we can.<br/><a target="_blank" href="http://twitter.com/minitravel">Follow us on Twitter</a> for the latest updates.</p>');
            }
        });
    }
}
