$(document).ready(function(){ $('#select-categoria').change(); });
$(document).ready(function(){ $("a.FotosUsado").fancybox(); });

$(document).ready(function() {
	$("[class^=validate]").validationEngine({
		success :  function() {
			var datos = $('#Contacto-Form').serialize();
			$(".ContButton input").attr({ value: "Enviando..."});
      $(".ContButton input").attr("disabled", "true");
			$.ajax({
				url: '_includes/php/acciones-usados.php?id-seccion=usados-contacto',
				type: 'POST',
				data: datos,
				success: function (response)
				{
					if (response != 'Error enviando los datos...')
					{
						$('#Response-AJAX').html(response);
						$(".ContButton input").remove();		
					}
					else
					{
						$('#Response-AJAX').html('Error enviado los datos...');
					}
				},
				error: function (response) {
					$('#Response-AJAX').html('Error de servicio al enviar los datos...');
				}
			});
		},
		failure : function() {}
	})
});
