// JavaScript Document

function focusContactHanlder() {
	
	if (this.value == this.title) { this.value = ''; }
}

function submitContactHandler() {
	
	var msg;

	if ($.trim(this.name.value).length == 0) {
		dom = this.name;
		msg = 'Por favor, introduce tu nombre';
	}

	if ($.trim(this.phone.value).length == 0) {
		dom = this.phone;
		msg = 'Por favor, introduce tu teléfono';
	}
	
	if ($.trim(this.email.value).length == 0) {
		dom = this.email;
		msg = 'Por favor, introduce tu correo electrónico';
	}
	
	if ($.trim(this.comments.value).length == 0) {
		dom = this.comments;
		msg = 'Por favor, introduce tus comentarios';
	}
	
	if (msg) {
		dom.focus();
		$('#formContact .msg').text(msg);
		$('#formContact .msg').fadeIn();
	} else {
		
		$('#formContact .msg').fadeOut();
		$('#formContact .loading').fadeIn();
		
		$.ajax({
			type: 'POST',
			url : '../br/Contact.php',
			data: $('#formContact').serialize(),
			success: function(data) {	
			
				if (data) { msg = 'Comentarios enviados correctamente'; }
				else      { msg = 'Error. Inténtalo más tarde'; }
			
				$('#formContact .loading').fadeOut(function() {
				
					$('#formContact .msg').text(msg);				
					$('#formContact .msg').fadeIn();
				});
			}
		});
		
	}
	
	return false;
}
