// Abre Corretor Online
function AbreJanela(theURL,winName,features) {
	window.open(theURL,winName,features);
}

$(document).ready(function(){

function redimImg(img){
	var limite = {
		hMax: 100,
		wMax: 140
	}
	if(img.height() > img.width()){
		img.height(limite.hMax);
		img.removeAttr("width");
	}else{
		img.width(limite.wMax);
		img.removeAttr("height");		
	}
	return(true);
}
$("#fichaLancamento #fotos img").each(function(){
		redimImg($(this));
	});
	$('#fichaLancamento').tabs({
		fxSlide:	true,
		fxFade:		true,
		fxSpeed:	'fast'
	});
	
	$('#slideDestaques').after('<div id="barraDestaques">').cycle({ 
		fx:     'turnDown', 
		speed:  600, 
		timeout: 6000, 
		pager:  '#barraDestaques' 
	});
	
	//	$("#cycleSlide").cycle({
	//		next: '.prev',
	//		prev: '.next',
	//		cleartype: 1,
	//		fx:     'scrollHorz',
	//		timeout: 20000,
	//		speed: 1000,  
	//		pager:  '#barraCycle',
	//		pagerAnchorBuilder: function(idx, slide) { 
	//		return '<li><a href="#">' + slide.title + '</a></li>'; 
	//		} 
	//	});	
});

$(function(){
	$("#cycleSlide").jCarouselLite({
		btnNext: "#cycleCasasTerrenos .next",
		btnPrev: "#cycleCasasTerrenos .prev",
		auto: 3500,
		speed: 800,
		visible: 5,
		cleartype: 1
	});
}); 