$(document).ready(function(){
    $("#mensaje").hide();
    $("#form").validate({
        event: "blur",
        rules: {
            'nombre': "required",
            'telefono': "required",
            'email': "required email"
        },
        messages: {
            'nombre': "Este campo es obligatorio.",
            'telefono': "Este campo es obligatorio.",
            'email': "Introduzca un email v&aacute;lido."
        },
        debug: true,
        errorElement: "label",
        submitHandler: function(form){
            $("#mensaje").show();
            $("#mensaje").html("<img src='ajax-loader.gif' style='vertical-align:middle;margin:0 10px 0 0' /><strong>Enviando mensaje...</strong>");
            $.ajax({
                type: "POST",
                //dataType: "json",
                url:"guardar.php",
                contentType: "application/x-www-form-urlencoded",
                processData: true,
                data: "nombre="+escape($('#nombre').val())+
                "&ciudad="+escape($('#ciudad').val())+
                "&telefono="+escape($('#telefono').val())+
                "&email="+escape($('#email').val()),
                success: function(msg){
                    $("#mensaje").html("<strong>Mensaje enviado correctamente. En breve nos contactaremos con usted. Gracias!</strong>");
                    setTimeout(function() {
                        //$('#mensaje').fadeOut('fast');
                        window.location.href = 'index.html';
                    }, 3000);

                }
            });
        }
    });
});
