/*function auth_actions(){
    var auth_form = $('#auth-form');
    var contacts = $('#contacts');
    if (auth_form.css('display') == 'none'){
        auth_form.show(300);
        contacts.hide(300);
    }
    else{
        auth_form.hide(300);
        contacts.show(300);
    }
}

$('document').ready(function(){
    $('#auth_link').click(function(){
        auth_actions();
        return false;
    });

    $('.corona-travel-phones').click(function(){
        auth_actions();
    });
});*/
