/*FUNÇÃO SLIDE DESTAQUES*/
$(document).ready(function() {
	//* DESTAQUE */
		var legenda = $("#legenda");
		val=$(".dest1").attr('title').split(' | ');
		legenda.html('<span>' + val[0] + '</span><br /><strong>' + val[1] + '</strong><br /><a href="' + $(".dest1").attr('rel') + '" target="_blank">' + $(".dest1").attr('rel') + '</a>');
		
		legenda.css("opacity", 0.8);
		
		$(".imagens-slide").cycle({
			fx: "fade",
			speed: 1000,
			timeout: 8000,
			next: "#btNext",
			prev: "#btBack",
			pause: 1,
			before: antes,
			after: depois
		});
		
		function antes() {
			legenda.fadeOut(300);
			legenda.empty();
		}
		
		function depois() {			
			val=this.title.split(' | ');
			legenda.html('<span>' + val[0] + '</span><br /><strong>' + val[1] + '</strong><br /><a href="' + this.rel + '" target="_blank">' + this.rel + '</a>');
			legenda.fadeIn(400);
		}
		
		
		
		/*FELIZARDOS*/
		$("#parceiros").cycle({
			fx: "scrollDown",
			speed: 800,
			timeout: 3900,
			next: ".nextParceiros",
			prev: ".backParceiros",
			pause: 1
		});
		
		
	
});
function enviaNews(){
	$("#alert").html("Processando...");
	$("#boxAlert").fadeIn();
	$("#camada").show();
	$("#alert").load("/envia-news.php?email="+$("#txtEmailNews").val(),function(response,status){
		if(status=="error"){
			$("#alert").html("erro no ajax");	
			$("#camada").css("display","none");
			$("#boxAlert").fadeOut();
		}else if(status=="success"){
			$("#camada").click(function(){
				$("#camada").css("display","none");
				$("#boxAlert").fadeOut();
			});
		}
	
	});
	return false;
}

