	if(document.getElementById("imoveisDestaquesLocacao")){
	   localInterval = window.setInterval(function(){
			$.ajax({
			type: "GET",
			url: "inc_destaques_locacao.aspx",
			datatype: "html",
			success: function(msg){
				html = msg;
				$("#imoveisDestaquesLocacao").fadeOut('slow', function(){
					$(this).html(html).fadeIn('slow');
				});
			}
		});
								 },15000);
		
	}
	