function enviaEmail()
{													
	var nome = $('#nome').val();
	var email = $('#email').val();
	var telefone = $('#telefone').val();
	var empresa = $('#empresa').val();
	var estado = $('#estado').val();
	var cidade = $('#cidade').val();
	var obs = $('#obs').val();

	$('#cboxTitle').css('color', '#EFBB50');
	$('#cboxTitle').css('font-size','16px');
	$('#cboxTitle').html('Enviando e-mail de contato!Aguarde...');
	
	$.post('enviarEmail.php'
			, { nome: nome, email: email, telefone: telefone, empresa: empresa, estado: estado, cidade: cidade, obs: obs}
			, function(retorno) {
				if (retorno == 'true') {
					$.colorbox({html:"<div class='TITULO_FORM_MODAL' style='font-size:20px;height:30px'>&nbsp;&nbsp;Feito! Obrigado Por Seu Contato!&nbsp;&nbsp;</div>"});
				} else {
					$('#cboxTitle').css('color', '#A54023');
					$('#cboxTitle').html('Erro ao enviar contato!');
					return false;
				}
			}
			, 'html'
	);
}
