﻿function ativa(id) {
 document.getElementById(id).style.backgroundColor='#FF9F11'
 document.getElementById(id).style.color='#212735';
 document.getElementById(id).style.cursor='pointer';
}

function desativa(id) {
 document.getElementById(id).style.backgroundColor='#FF8F01';
 document.getElementById(id).style.color='#FFFFFF'
}

function loadXMLDoc() {
  if (window.XMLHttpRequest) { //code for IE7+, Firefox, Chrome, Opera, Safari
     xmlhttp=new XMLHttpRequest();
  }
  else { //code for IE6, IE5
     xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
  xmlhttp.onreadystatechange=function() {
  if (xmlhttp.readyState==4 && xmlhttp.status==200) {
     document.getElementById("caixaTexto").innerHTML=xmlhttp.responseText;
  }
}
xmlhttp.open("POST","texto.asp",true);
xmlhttp.send();
}
function altera_cor(contador) {
	document.getElementById("imperdivel").src = "fotos/selo-teatro" + contador + ".jpg";
	if (contador == 1) {
		contador = 2
	}
	else {
		contador = 1
	}
	setTimeout("altera_cor("+contador+");",1000);
}
