// Projetos

function fnProjetoAno(codigo, id_){
	var op = "operacao=ProjetoAno";
	op += "&CodAno=" + codigo;
	fnAjax("GET", "timeline_imgs", "ajax.asp", op, "fnFocus('#focus')", "");
	
	for (var i = 0; i < document.getElementById("total_anos").value; i++){
		if(document.getElementById("id_" + i).id == id_){
			document.getElementById("id_" + i).className = "item_selected";
		} else {
			document.getElementById("id_" + i).className = "item";
		}
	}
}

// Foca na div para nao perder navegação
function fnFocus(name){
	location.href = ""+name+"";
}

// Mostra Projeto
function fnProj(codp, p_){
	var op = "operacao=Projects";
	op += "&CodProjeto=" + codp;
	fnAjax("GET", "proj-fotoscontent", "ajax.asp", op, "", "");
	
	for (var i = 0; i < document.getElementById("total_dest").value; i++){
		if(document.getElementById("p_" + i).id == p_){
			document.getElementById("p_" + i).className = "item_selected";
		} else {
			document.getElementById("p_" + i).className = "item";
		}
	}
}