// Menu
function mostra(campo){document.getElementById(campo).style.display='';}
function oculta(campo){document.getElementById(campo).style.display='none';}

// Banners Lancamentos Home
$(document).ready(function(){
	$('#cycleBanners .bannersCycle').after('<div id="navegaBanners">').cycle({ 
		fx: 'fade', 
		speed: 600, 
		timeout: 6000, 
		pager: '#navegaBanners' 
	});
	$("#boxPorBairro .cycleBairros").cycle({
		prev: '#boxPorBairro .prevBairro',
		next: '#boxPorBairro .nextBairro',
		cleartype: 1,
		fx:     'fade',
		timeout: 10000,
		speed: 0,  
		pager:  '#barraBairro',
		pagerAnchorBuilder: function(idx, slide) { 
			return '<li class=' + slide.id + '><a href="#">' + slide.title + '</a></li>'; 
		} 
	});
	$("#boxLancamentos .cycleLancamentos").jCarouselLite({
		btnNext: "#boxLancamentos .proximo",
		btnPrev: "#boxLancamentos .anterior",
		auto: 5000,
		speed: 800,
		visible: 5,
		cleartype: 1
	});
});