/* Javascript página principal */

$(document).ready(function(){
	
	//destaques
	$('#destaquess').cycle({ 
		fx:	'fade',
		//pager: 	'#nav', 
		prev:	'#prev',
        next: 	'#next',
		//pause:   1
	});
	function pagerFactory(idx, slide) {
        var s = idx > 2 ? ' style="display:none"' : '';
        return '<li'+s+'><a href="#">'+(idx+1)+'</a></li>';
    };
	
	$("a#mapscompetiva").fancybox({
		'width'				: '97%',
		'height'			: '97%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titleShow'		: false,
		'type'				: 'iframe'
	});
	
	//produtos
	$('#produtoss').cycle({ 
		fx:	'fade',
		//pause:   1
	});
	
	// twitter
	ajax_loading("#twitter_conteudo");
	
	$.get("_shared/twitter.php?act=list", function(data) {
		$("#twitter_conteudo").html(data);
		$("#twitter_conteudo").unblock();
	});
	
	// newsletter
	$("#btnNewsletter").click(function() { 			
		try {
			ajax_loading("#boletim_corpo");
			
			$.post("index.php?j=1", $("#frmNewsletter").serialize(), function(data) { 
				if(data[0] == 1) 
				{
					data = data.substr(1);
					$("#frmNewsletter input[name='email']").val("Digite seu e-mail:");
				}
				
				$("#boletim_corpo").unblock();
			
				$("#boletim_corpo").block({
					message: "<div id=\"mensagem_ajax\"><p>" + data + "</p><br /><a href=\"#boletim\" onclick=\"ajax_loading_close('#boletim_corpo');\">[Fechar]</a></div>",
					css : {margin: 0, padding: 0, border: 'none', width: '250px',  background: 'none'},
					overlayCSS: { background:'#000',  opacity: '0.9' } 
				});
			});
		} catch(e) { alert(e); }
		
		return false;
	});
	
	try {	
		// slider das fotos
		/*jQuery('#contas').jcarousel({ 
			wrap: 'last', 
			auto: 1,
			scroll: 1,
			animation: 1000 });*/
		$("#contas").jCarouselLite({ 
			visible: 1, 
			auto: 2000, 
			speed: 1000
		});


	} catch(e) { alert(e); }
});


