function proxima(tabela, anterior, proxima) {
	scrollingDiv = document.getElementById(tabela)
	scrollingDiv.scrollTop += 250;
		
	if(scrollingDiv.scrollTop >= 250) {
		document.getElementById(anterior).className = 'block';
	}
	
	if(scrollingDiv.scrollTop >= 750) {
		document.getElementById(proxima).className = 'none';
	}
	
}

function anterior(tabela, anterior, proxima) {
	scrollingDiv = document.getElementById(tabela)
	scrollingDiv.scrollTop -= 250;
	
	if(scrollingDiv.scrollTop == 0) {
		document.getElementById(anterior).className = 'none';
	}
	
	if(scrollingDiv.scrollTop >= 250) {
		document.getElementById(proxima).className = 'block';
	}
		
}

function inic(){
	scrollingDiv = document.getElementById('imoveis_venda');
	scrollingDiv.scrollTop = 0;
	
	scrollingDiv = document.getElementById('imoveis_aluguel');
	scrollingDiv.scrollTop = 0;
}
	