// JavaScript Document
$(document).ready(function(){
$("#cidade").val("0");
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);
}
 
});

	$(document).ready(function(){
		
		$("#imobdestaque").jCarouselLite({
			auto: 5000,
			speed: 800,
			visible: 2,
			vertical: true
		});
		
	});
