
$(function(){
	$('#principal h3, #principal h2,#principal_solucoes h3,#topo h1 a').mouseover(function(){
	$(this).fadeTo(500,0.3);
	});
	
	$('#principal h3, #principal h2,#principal_solucoes h3,#topo h1 a').mouseout(function(){
	$(this).fadeTo(500,0.9);
	});

});


$(function(){
	$('form input, form textarea').focus(function(){
		$(this).css('background','#f7fde7');
		$('input:last').css('background','#91C80A');
	});
		$('form input, form textarea').blur(function(){
		$(this).css('background','');
		$('input:last').css('background','#91C80A');
	});
});


	$(function() {
			$('.mostrar + span')
			.css({display: 'none',
			border: '1px solid #add6ef',
			padding: '2px 4px',
			background: '#d6e2e5',
			marginLeft: '10px'
			});
			$('.mostrar').focus(function() {
				$(this).next().fadeIn(1500);
			}).blur(function() {
				$(this).next().fadeOut(1500);
			});		
	});

$(function(){
	$('#botao').mousedown(enviar);
});

function enviar(){
$('#efeito').hide(2000);
$('#mostrar').text('Mensagem enviada...');
}

