home_cats_interval=setInterval("home_cats_init()",100);
function home_cats_init(){if (document.getElementById("rodape")){clearInterval(home_cats_interval);home_cats_iniciar();}}
function home_cats_iniciar(){
	for(i=0; i<99; i++){
		if(document.getElementById("voltar_"+i)){
		document.getElementById("voltar_"+i).onclick=fc_voltar;
		}else{break}
	}
}
function fc_voltar(){
	history.back(1);
	return false;
}