$(document).ready(function() {
	
	$('#type').change(function(){
		if($(this).val() == "c"){
			$('tr[@id=razao]').hide();
			$('tr[@id=nomef]').hide();
			$(".input-text-required").each(function (){
				$(this).css("background-color","");
			}
		);
		}else{
			$('tr[@id=razao]').show();
			$('tr[@id=nomef]').show();
			$(".input-text-required").each(function (){
				$(this).css("background-color","");
			}
		);
		}
	});
	$(".errorInput").hide(0);
	$(".errorEmail").hide(0);
	
	$("#name").focus();
	
	$("#bt_contact").click(function(){
		var validation = true;
		
		$(".input-text-required").each(function (){
			if($(this).val() == ""){
				$(this).css("background-color","#DDEBF7");
				validation = false;
			}else{
				$(this).css("background-color","");
			}
		});
		
		if(validation){
			$.post('classes/control/mailCRTL.php', 
					{ type : $('#type').val(),
					  name : $('#name').val(),
					  ddd1 : $('#ddd1').val(),
					  phone1 : $('#phone1').val(),
					  ddd2 : $('#ddd2').val(),
					  phone2 : $('#phone2').val(),
					  email : $('#email').val(),
					  subject : $('#subject').val(),
					  company : $('#company').val(),
					  fancyName : $('#fancyName').val(),
					  message : $('textarea[@id=message]').val()},
					function(resposta){
				    
				    jAlert('Sua mensagem foi enviada com sucesso <br> Breve entraremos em contato.', 'Mensagem Enviada', function(e){
				    	if(e){
				    		window.location.href = "index.php";
				    	}
				    });
				}
			);
		}else{
			$(".errorInput").slideDown(100);
		}
	
	});
});
		
