jQuery(document).ready(function() {
	jQuery(function() {

		jQuery("#b_contacto").click(function(){
			var nombre = validateTextfield('nombre');
			var apellidos = validateTextfield('apellidos');
			var email = validateEmail('email');
			var telefonos = validateTextfield('telefonos');
			var comentarios = validateTextarea('comentarios');
			var destinatario = validateSelect('destinatario');
			bool = nombre && apellidos && email && telefonos;
			if (!bool){
				setDisplay('comment_warning', '');
			}
			return bool;
		});

		jQuery("#b_consulta").click(function(){
			var nombre = validateTextfield('nombre');
			var apellidos = validateTextfield('apellidos');
			var email = validateEmail('email');
			var consulta = validateTextarea('consulta');
			bool = nombre && email && consulta;
			if (!bool){
				setDisplay('comment_warning', '');
			}
			return bool;
		});
		
		jQuery("#dff_comentarios").focus(function(){ if (!jQuery(".InmoAddComment").hasClass("InmoAddCommentActive")){ jQuery(".InmoAddComment").addClass("InmoAddCommentActive");}});
		jQuery("#bg_submit_InmoAddComment_cancel").click(function(){
			jQuery("#dff_comentarios").val(''); jQuery("#dff_nombre").val(''); jQuery("#captcha").val(''); jQuery(".wmsg_InmoAddComment").hide();
			jQuery("#td_InmoAddComment_e01").removeClass("f_error"); jQuery("#td_InmoAddComment_e02").removeClass("f_error"); jQuery("#td_InmoAddComment_e03").removeClass("f_error");
			jQuery(".InmoAddComment").removeClass("InmoAddCommentActive");
		});
	});
});
