// Javascript da Busca
function fnAbreBuscaRapida(id) {
	_busca = document.getElementById(id).style.display;	
	if ( _busca == 'none' ) {
		document.getElementById(id).style.display = 'block';	
	} else {
		document.getElementById(id).style.display = 'none';	
	}
}

// JavaScript do Menu
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("menuTopo");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace
	(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

// Atendimento
function fPopAtendimentoOnline(){
	var url = "http://web.atendimentoaovivo.com.br/chat.asp?idc=5495&pre_empresa=1243&pre_depto=auto& vivocustom=xxxxx&vivocustom2=xxxxx&vivocustom3=xxxxx&vivocustom4=xxxxx";
	window.open(url,'chat','scrollbars=no,location=no,toolbar=no,menubar=no,resizable=no');
} 

// Cycle
$(document).ready(function(){
	$('.destaque').after('<div id="nav2">').cycle({ 
		fx:     'fade', 
		speed:  600, 
		timeout: 6000, 
		pager:  '#nav2' 
	});
	
	$("#cycleImoveisTipo .cycleDestaques").cycle({
		cleartype: 1,
		//fx:     'scrollHorz',
		fx:     'fade',
		timeout: 20000,
		speed: 1000,  
		pager:  '#barraCycle',
		pagerAnchorBuilder: function(idx, slide) { 
		return '<li><a href="#">' + slide.title + '</a></li>'; 
		} 
	});
});

