function validaDatosContacto(){
  var mensaje = '';
  $('.input_text').each(function(){
	if( !this.value ){
	  mensaje = 'El campo ' + this.name + ' es requerido.';
	  this.focus();
	  $('.mensaje').html( mensaje );
      return false;  
	}
	
	if( this.name == 'email'){
	  var email = $('.email').val();	  
	  if( !/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test( email ) ){
	    mensaje = 'Email no valido.';
	    $('.mensaje').html( mensaje );
        return false;
      }	
	}	
  });
  if( !mensaje ){
    $('#form_contact').submit();
    return true;

  }
}