// Abre Corretor Online
function AbreJanela(theURL,winName,features) {
	window.open(theURL,winName,features);
}

// Destaques Banners Home
$(document).ready(function(){
	$('#cycleBanners .bannersCycle').after('<div id="navegaBanners">').cycle({ 
		fx:     'fade', 
		speed:   600, 
		timeout: 6000, 
		pager:  '#navegaBanners' 
	});

});

// Destaques Home
$(function(){
	$("#destCondominio .cycleDestaques").jCarouselLite({
		btnNext: "#destCondominio .prev",
		btnPrev: "#destCondominio .next",
		//auto: 3500,
		speed: 800,
		visible: 4,
		cleartype: 1
	});
	
	$("#destVenda .cycleDestaques").jCarouselLite({
		btnNext: "#destVenda .prev",
		btnPrev: "#destVenda .next",
		//auto: 3500,
		speed: 800,
		visible: 4,
		cleartype: 1
	});
	
	$("#destLocacao .cycleDestaques").jCarouselLite({
		btnNext: "#destLocacao .prev",
		btnPrev: "#destLocacao .next",
		//auto: 3500,
		speed: 800,
		visible: 4,
		cleartype: 1
	});
});