// JavaScript Document
var selected = 0;
function efeitosTabela () {
	var celulas = new Array ("cl_eventos","cl_videos");
	var corOver = "#D4D0C8";
	var corOut = "#E2E2E2";
	
	function desativa (numero) {
		document.getElementById(celulas[numero]).style.backgroundColor = corOut;
	}

	for(i in celulas) {		
		document.getElementById(celulas[i]).i = i;
		document.getElementById(celulas[i]).onmouseover = function () {
			this.style.cursor = "pointer";		
			this.style.backgroundColor = corOver;
		}
		document.getElementById(celulas[i]).onmouseout = function () {	
			if(selected != this.i) {
				this.style.backgroundColor = corOut;
			}
		}
		document.getElementById(celulas[i]).onclick = function () {
			if(selected != this.i) {
				this.style.backgroundColor = corOver;
				desativa(selected);
				contLateral(this.i);
				selected = this.i;
							
			}
		}
	}
}