var ob_mais_area;
var url;
var xmlhttp;
var mais_interval=setInterval("maisjogos_init()",500);
function maisjogos_init(){if (document.getElementById("rodape")){clearInterval(mais_interval);maisjogos_iniciar();}}
function maisjogos_iniciar(){
	ob_mais_area=document.getElementById("maisjogados_geral_area");
	fc_maisjogos_eventos();
}
function fc_maisjogos_eventos(){
	if(document.getElementById("maisjogados_geral_pg_proxima")){
		document.getElementById("maisjogados_geral_pg_proxima").onclick=fg_mais_pg;
	}
	if(document.getElementById("maisjogados_geral_pg_anterior")){
		document.getElementById("maisjogados_geral_pg_anterior").onclick=fg_mais_pg;
	}
}
function fg_mais_pg(){
	img_car=img_carregando2.src;
	img_car_class=img_car.split('/');
	img_car_class=img_car_class.pop();
	img_car_class=img_car_class.match(/\d+/);
	document.getElementById("maisjogados_geral_carregando").innerHTML='<img src="'+img_car+'" class="img_carregando'+img_car_class+'">';
	document.getElementById("maisjogados_geral_area2").style.visibility="hidden";
	url=this.getAttribute("href");
	url=url.split("&");
	url.shift();
	url=url.join("&")
	openajax();
	xmlhttp.open("GET", "includes/ult_maisjogados_geral.php?"+url+'&pgred='+escape(this.getAttribute("href")),true);
	xmlhttp.onreadystatechange=function() {
		if (xmlhttp.readyState==4){
			var texto=xmlhttp.responseText
				ob_mais_area.innerHTML=texto;
				fc_maisjogos_eventos();
		}
	}
	xmlhttp.send(null)
	return false;
}