function buscaDados(id, lingua)
{

var xmlHttp;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    try
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    catch (e)
      {
      alert("Your browser does not support AJAX!");
      return false;
      }
    }
  }


  xmlHttp.onreadystatechange=function()
    {


    if(xmlHttp.readyState<4)
      {
      
      


      
      }
    
    if(xmlHttp.readyState==4)
      {

      document.getElementById("area").innerHTML=xmlHttp.responseText;
     
      }
    }
  url="includes/AJAX/buscaultimoseventos.php"  
  url=url+"?id="+id+"&lingua="+lingua; 
  xmlHttp.open("GET",url,true);
  xmlHttp.send(null);

  }


function geraImagens(id)
{
muda = "imagem"+id;
document.getElementById("imagem1").src = "img/ima2.gif";
document.getElementById("imagem2").src = "img/ima2.gif";
document.getElementById("imagem3").src = "img/ima2.gif";
document.getElementById("imagem4").src = "img/ima2.gif";
document.getElementById("imagem5").src = "img/ima2.gif";
document.getElementById("imagem6").src = "img/ima2.gif";


document.getElementById(muda).src = "img/ima1.gif";



}

function mostraTituloData(id, titulo, data)
{
mudatitulo = "titulo"+id;
mudadata = "data"+id;
mudaimagem = "imagem"+id;
/*
document.getElementById("titulo1").style.fontWeight="bold";
document.getElementById("titulo2").style.fontWeight="bold";
document.getElementById("titulo3").style.fontWeight="bold";
document.getElementById("titulo4").style.fontWeight="bold";
document.getElementById("titulo5").style.fontWeight="bold";
document.getElementById("titulo6").style.fontWeight="bold";
*/
document.getElementById("titulo1").style.color="#000000";
document.getElementById("titulo2").style.color="#000000";
document.getElementById("titulo3").style.color="#000000";
document.getElementById("titulo4").style.color="#000000";
document.getElementById("titulo5").style.color="#000000";
document.getElementById("titulo6").style.color="#000000";
document.getElementById("data1").style.color="#000000";
document.getElementById("data2").style.color="#000000";
document.getElementById("data3").style.color="#000000";
document.getElementById("data4").style.color="#000000";
document.getElementById("data5").style.color="#000000";
document.getElementById("data6").style.color="#000000";


//document.getElementById(mudatitulo).style.fontWeight="bold";
document.getElementById(mudatitulo).style.color="#EBAF00";
document.getElementById(mudadata).style.color="#EBAF00";

document.getElementById(mudaimagem).style.cursor = "pointer";
}

function stopRequest()
{
if (xmlHttp) {
    xmlHttp.abort();
    }

}

