$(document).ready(function () {
	$('.caixa-servicos').hover(
		function(){
			$(this).find('.tit-servicos').animate({marginTop:"15px"},200)
		},
		function(){
			$(this).find('.tit-servicos').animate({marginTop:"50px"}, 200)
	});
	$('.texto-twitter-fora').cycle({
		fx: 'scrollHorz',
		speed: 1000,
		timeout: 6000,
		next: '.next',
		prev: '.prev'
	});
});
function sendMail(){
	$('.bt-enviar').fadeTo( 'fast', 0 );	
	$.post('/website/send-mail.php', {
		nome: $('#nome').val(), email: $('#email').val(), mensagem: $('#mensagem').val()
	}, function(resposta){
		
		$('#mensagemMail').hide();
		$('#mensagemMail').html( resposta.img ).fadeIn('slow');
		if( resposta.sucess != true )
			$('.bt-enviar').fadeTo( 'slow', 1 );
		else
			$('.bt-enviar').remove();
	}, 'json');
}


