$(function(){
	$("img:not([rel='noloading']").createLoader();
	
	//Formulário de Newsletter
	$("#formNews").submit(function() {
		$("#respostaNews").css({'color':'#336699'}).fadeIn().html("Cadastrando ");
		$.post('newsletters.post.php', $(this).serialize(), function(resposta) {			
			if(resposta !=false){		
				$("#respostaNews").html(resposta);
				return;
			}
			$("#respostaNews").html("Email cadastrado.");
		})
	});
	
	//Formulário de Contato;
	$("#formContato").submit(function() {
		$("#respostaForm").css({'color':'#336699','clear':'both','padding':'0px 0px'}).fadeIn().html("Enviando");
		$.post('contato.post.php', $(this).serialize(), function(resposta) {			
			if(resposta !=false){		
				$("#respostaForm").html(resposta);
				return;
			}
			$("#respostaForm").html("Formulário enviado com sucesso.");
		})
	});
	
	//Formulário de Contato;
	$("#enviarMessagem").submit(function() {
		$("#respostaMsg").css({'clear':'both','padding-left':'15px','float':'left','display':'table','color':'#ffffff'}).fadeIn().html("Enviando");
		$.post('mensagem.post.php', $(this).serialize(), function(resposta) {			
			if(resposta !=false){		
				$("#respostaMsg").html(resposta);
				return;
			}
			$("#respostaMsg").html("Formulário enviado com sucesso.");
		})
	});
		
	$("#enqueteForm").submit(function(){
		var obj = {
			pergunta : $("#perguntaEnquete").val(),
			resposta : $("input[name='resposta']:checked").val()
		}
		if(obj.pergunta == undefined || obj.resposta == undefined)return false;
		
		$("#respostaEnquete").show().html("Enviando..");
		$.post('votar.post.php', obj, function(retorno) {			
			$("#respostaEnquete").html(retorno);
		});
	});//enquete
	
})

