function cooperativado2007(){
	var cooperativado2007 = document.getElementById("cooperativado2007");
	
	if(!cooperativado2007)
		return;
	
	var linkregulamento = getElementsByClassName("regulamentobutton", cooperativado2007);
	linkregulamento = linkregulamento[0];
	
	linkregulamento.setAttribute("href", "#caixaregulamento");
	linkregulamento.setAttribute("target", "_self");
	linkregulamento.onclick = function(){
		regulamento.style.display = "";
		
		return true;
	}
	
	var regulamento = getElementsByClassName("caixaregulamento", cooperativado2007);
	regulamento = regulamento[0];
	regulamento.style.display = "none";
	
	
	var fechar = getElementsByClassName("fecharbutton", cooperativado2007);
	fechar = fechar[0];
	fechar.onclick = function(){
		regulamento.style.display = "none";
	}	
}