//Get Element By Id
function gE(id){return document.getElementById(id);}

function iAjx(){
if(window.XMLHttpRequest){return new XMLHttpRequest();}
else if(window.ActiveXObject){return new ActiveXObject("Microsoft.XMLHTTP");}
else{alert("Esta página não funcionará corretamente, pois seu browser não suporta Ajax");}}

function mostra(box){
gE('box-busca').style.display="none";
gE('box-jogos').style.display="none";
gE('box-idiomas').style.display="none";
gE('box-perfil').style.display="none";
gE('a-busca').className="";
gE('a-jogos').className="";
gE('a-idiomas').className="";
gE('a-perfil').className="";
gE("box-"+box).style.display="block";
gE('a-'+box).className="at";
}

todosj="";
function cTodos(){
if(todosj==""){
ajax=iAjx();
ajax.open("GET","/src/todosjogos.php", true);
ajax.onreadystatechange = function() {
if (ajax.readyState == 4)
{document.getElementById('box-jogos').innerHTML = ajax.responseText;todosj=ajax.responseText;}};
ajax.send(null);}else{document.getElementById('box-jogos').innerHTML = todosj;}}

function procuralista(){
ajax.open("GET","/src/jogolista.php?j="+gE('Tjogos').value, true);
ajax.onreadystatechange = function() {
if (ajax.readyState == 4)
{document.getElementById('box-jogos').innerHTML = ajax.responseText;}};
ajax.send(null);}