$(function(){
    $("div.imovel").hover(function() {
        $(this).find("a, a *").css("color", "#000");
        $(this).css({borderColor: "#000", cursor: "pointer"});
        $(this).find("*").css({borderColor: "#000", cursor: "pointer", textDecoration: "underline"});
    }, function() {
        $(this).find("a, a *").css("color", "");
        $(this).css({borderColor: "", cursor: ""});
        $(this).find("*").css({borderColor: "", cursor: "", textDecoration: "none"});
    }).click(function(){
        location.href = $(this).find("a").attr("href");
    });
	$(".imovel .imagem img").each(function () {//Carregando as fotos e o logo do empreendimento
	    with($(this)) {
	        error(function() {//Caso a imagem não carregue
	            $(this).hide();//Oculta a imagem
	            $(this).parent().css({
	                background: "#FFF",
	                height: "82px",
	                width: "116px"
	            });
	        });	        
	        attr("src", this.src);//Atualizar
	    }
	});
});