jQuery(function() {
	$("#contacto").submit(function(){
		jQuery().ajaxStart(function() {
			$("#loader-contacto").show();
		}).ajaxStop(function() {
			$("#loader-contacto").hide();
			runEffect();
		}).ajaxError(function(a, b, e) {
			throw e;
		});
	});
	
	var v = jQuery("#contacto").validate({
		submitHandler: function(form) {
			jQuery(form).ajaxSubmit({
				target: "#resultado-formulario"
			});
		},
		
		rules: {
			nombre: {required:true},
			email: {required:true, email:true},
			mensaje: {required:true}
		},

		messages: {},
		
		errorPlacement: function(error, element) {}
	});
});

function runEffect() {
	setTimeout(function() {
        $("#resultado-formulario").children("DIV").fadeOut("slow");
    }, 10000);

};
