// Abre Corretor Online
function AbreJanela(theURL,winName,features) {
	window.open(theURL,winName,features);
}

// JavaScript Document
$(document).ready(function(){
		$("#imagens_imoveis").cycle({ 
			fx: 'scrollHorz',
			next:   '.proximo_cycle', 
			prev:   '.anterior_cycle',
			speed: 3000,
			timeout:  8000 
		});
		$('#imagens_imoveis *').Tooltip({ 
			track: true, 
			delay: 0, 
			showURL: false, 
			opacity: 1,
			extraClass: "tooltip",
			fixPNG: true,
			opacity: 0.85,
			showBody: " - "
		});
	});

// JavaScript Document

var intervalo;

function fechaRich(){
	var rich_media = document.getElementById("rich_media");
	rich_media.style.display = "none";
}

function clicaRich(){
	var rich_media = document.getElementById("rich_media");
	rich_media.style.display = "none";
	//window.open ("http://www.phfit.com.br/img/pdf/Catalogo_Natal_2008_digital.pdf","Catalogo","none");
}
function mostraRich(){
	var rich_media = document.getElementById("rich_media");
	rich_media.style.display = "block";
	setTimeout("fechaRich()",20000)
}