var tiempo = 250;
var actual = ".roundabout-row";

function toContacto(){
    $(actual).fadeOut(tiempo,function(){
        $("#contacto").fadeIn(tiempo);
        actual = "#contacto";
    })
}

function toInitial(){
    $(actual).fadeOut(tiempo,function(){
        $(".roundabout-row").fadeIn(tiempo);        
        actual = ".roundabout-row";
    })
}

function toAddress(){
    $(actual).fadeOut(tiempo,function(){
        $("#direcciones").fadeIn(tiempo);     
        actual =  "#direcciones"
    })
}


function enviaDatos(){
    var parametros=$("#contact-form").serialize();
    bloqueaPantalla("Enviando - Sending.");
    $.post("ajax/procesaContacto.php",parametros,function(data){
        alert(data);
        $.unblockUI();
        Recaptcha.reload();
        
    })
}




/*UTILS*/

function bloqueaPantalla(sms){
    $.blockUI({
        message: '<h1 style="font-size: 20px">'+sms+'</br> Un momento por favor.</h1><img src="ajax-loader3.gif"/><br/>',
        css: {
            border: 'none',
            padding: '15px',
            backgroundColor: '#000',
            '-webkit-border-radius': '10px',
            '-moz-border-radius': '10px',
            opacity: .5,
            color: '#fff'
        }
    });
}
