// MOSTRA AS RESPOSTAS
jQuery(document).ready(function(){
	
	jQuery('.duvida').click(function(){
		
		jQuery(this).toggleClass("seta_baixo");
		
		jQuery(this).next().slideToggle("slow");
	});
	
	// CLIENTE CLICOU NO SIM 
	jQuery('#sim').click(function(){
		jQuery.ajax({
			type: "POST",
			url: "trata_duvidas.php",
			data: "encontrou=sim",
			success: function(msg)
			{
				//jQuery('#box_pergunta_do_cliente').hide();
				jQuery('#pergunta').hide();
				//jQuery('#buttons').fadeOut('slow');
				
				jQuery('#buttons').fadeOut('slow',function(){
					jQuery('#buttons').fadeIn('slow').html(msg);
				});
			}
		});
	});
	
	// cliente clicou no nao entao mostra os campos pra digitar a duvida
	jQuery('#nao').click(function(){
		
		jQuery('#pergunta').fadeIn('slow');
		
	});
	
	jQuery('#email').focus(function(){
		
		if (jQuery('#email').attr("value") == 'e-mail')
		jQuery('#email').attr("value",'');
		
	});
	
	
});




